Monday 28 December 2009

Joomla1.5.15 インストール不具合修正ログ

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);
(pathway.phpをこちらに書き換えたら、エラーが修正された。)

No comments: