i receive the error message 'Fatal error: Call to undefined function: utf8_decode() in ... functions.php on line 2012' while sending an message
do you have any idea what the problem might be ? could there be a problem with the php of the ISP ?
The utf8_decode() and utf8_encode() are compiled into PHP by default. You ISP has compiled PHP and added the --disable-xml configuration option.
You should request that your ISP reconfigure PHP with XML options. You can refer them to http://www.php.net/manual/en/ref.xml.php
You can temporarily get PGV running by adding the following lines to your functions.php file:
function utf8_decode($var) return $var; function utf8_encode($var) return $var;
--John
Log in to post a comment.
i receive the error message 'Fatal error: Call to undefined function: utf8_decode() in ... functions.php on line 2012' while sending an message
do you have any idea what the problem might be ?
could there be a problem with the php of the ISP ?
The utf8_decode() and utf8_encode() are compiled into PHP by default. You ISP has compiled PHP and added the --disable-xml configuration option.
You should request that your ISP reconfigure PHP with XML options. You can refer them to http://www.php.net/manual/en/ref.xml.php
You can temporarily get PGV running by adding the following lines to your functions.php file:
function utf8_decode($var) return $var;
function utf8_encode($var) return $var;
--John