How to "fix cannot yet handle MBCS in html_entity_decode()!" erros? |
when you do an Joomla database install or import backup database after installing Joomla , the home page works fine - But when you click any link to other pages you'll get this error: Warning: cannot yet handle MBCS in html_entity_decode()! in /home/fandan/public_html/libraries/joomla/application/pathway.php on line 209
To correct this problem, upgrade your server to use PHP version 5. If that is not possible, you can make a change to line 209 of the file libraries/joomla/application/pathway.php. In version 1.5.15, this line is as follows: $item->name = html_entity_decode($name, ENT_COMPAT, 'UTF-8'); To fix this problem on a site running PHP 4.x, change line 209 to: $item->name = html_entity_decode($name);{mosgoogle} |