Hello,
PHP is crashing (segfault) due to some bug. See
http://bugs.php.net/bug.php?id=32929 for details, but here is the code
in which it occurs:
while ($res=$result->fetchRow(DB_FE TCHMODE_ASSOC))
{
// TODO: make iconv optional
foreach ($res as $key=>$val)
$res[$key]=iconv("ISO-8859-1","UTF-8",$val);
////// CRASHING ON FOLLOWING LINE AFTER 5 ITERATIONS (DATA DEPENDANT)
$wikireq[$id][]=$res;
}
Tried on two different servers and with various compile options/php
versions (recent), it is still there.
Oops, and this code really needs to go to "production ", I don't know
what to do :-(
Does someone see something in it (workaround, ...) ?
Thank you,
Yannick Majoros
PHP is crashing (segfault) due to some bug. See
http://bugs.php.net/bug.php?id=32929 for details, but here is the code
in which it occurs:
while ($res=$result->fetchRow(DB_FE TCHMODE_ASSOC))
{
// TODO: make iconv optional
foreach ($res as $key=>$val)
$res[$key]=iconv("ISO-8859-1","UTF-8",$val);
////// CRASHING ON FOLLOWING LINE AFTER 5 ITERATIONS (DATA DEPENDANT)
$wikireq[$id][]=$res;
}
Tried on two different servers and with various compile options/php
versions (recent), it is still there.
Oops, and this code really needs to go to "production ", I don't know
what to do :-(
Does someone see something in it (workaround, ...) ?
Thank you,
Yannick Majoros
Comment