Quote:
Originally Posted by mirdin
You'll have to ask your host to upgrade to a more recent version of PHP.
Or if you follow the link to the php function I posted before, it shows this code:
PHP Code:
// For users prior to PHP 4.3.0 you may do this:
function unhtmlentities($string)
{
$trans_tbl = get_html_translation_table(HTML_ENTITIES);
$trans_tbl = array_flip($trans_tbl);
return strtr($string, $trans_tbl);
}
$c = unhtmlentities($a);
echo $c; // I'll "walk" the <b>dog</b> now
?>
If upgrading PHP is not possible for you then you could try to replace the html_entity_decode function using this example.
By the way, has anyone managed to fix the double post issues? I have these issues with both yahoo and bbc feeds.
|
Why when i run it some time i get this error
Fatal error: Maximum execution time of 30 seconds exceeded in /home/myuser/public_html/includes/functions_databuild.php on line 480