Hello
When I want to load the index.php in the phpwcms root I become a fatal error Message:
Fatal error: Call to undefined function: html_entity_decode() in c:\apache\htdocs\phpwcms\include\inc_front\front.func.inc.php on line 2875
I don't knew why I become this Error.. I have a new phpwcms installation and the setup process was successfull. The login works.
I did not made any change on the front.func.inc.php file.
Thank you for your help
Error front.func.inc.php on line 2875
well, not perfect but it workz for me
function html_entity_decode($string)
{
$trans = get_html_translation_table(HTML_ENTITIES);
$trans = array_flip($trans);
$contents= strtr($string, $trans);
return $contents;
}
//With kind regards
{
$trans = get_html_translation_table(HTML_ENTITIES);
$trans = array_flip($trans);
$contents= strtr($string, $trans);
return $contents;
}
//With kind regards