By default PHPLinkDirectory does not display unicode utf-8 coded characters. You need to change the init.php file at the root of your phpld directoy.
Edit init.php in both home directory of your phpld installation and the admin directory.
Change:
// $setCharset = $db->Execute (“SET NAMES ‘utf8′”);
// $setCharset = $db->Execute (“SET CHARACTER SET utf8″);
to:
$setCharset = $db->Execute (“SET NAMES ‘utf8′”);
$setCharset = $db->Execute (“SET CHARACTER SET utf8″);
For more detail: http://www.karolos.com/unicode-utf-8-characters-problem-solved-in-phpld/
Advertisement
Recent Comments