Can't get Japanese to work on Moodle 1.7

Can't get Japanese to work on Moodle 1.7

- robert maran の投稿
返信数: 6
I recently upgraded to moodle 1.7 via c-panel. I selected "Japanese" and "English " language packs ,but when I go to write in Japanese say for example in assignment activity, when I save it , it then appears as "??????". Does anyone have a solution to this problem?

Cheers
Robert
robert maran への返信

Re: Can't get Japanese to work on Moodle 1.7

- Mitsuhiro Yoshida の投稿
画像 Developers 画像 Particularly helpful Moodlers 画像 Translators
Mitsuhiro Yoshida への返信

Re: Can't get Japanese to work on Moodle 1.7

- robert maran の投稿
Thank you for your kind reply, but where exactly do I find the "code" you linked me to ?
Robert
robert maran への返信

Re: Can't get Japanese to work on Moodle 1.7

- Mitsuhiro Yoshida の投稿
画像 Developers 画像 Particularly helpful Moodlers 画像 Translators
Could you find the Moodle install directory?
Then go to "lib" directory in the Moodle install directory.

The script file you need to modify is "dmlib.php" in "lib" directory.
Open dmlib.php and go to line 1909.
And modify the "code" as below.

[Before]
switch ($CFG->dbtype) {
case 'mysql':
/// Set names if needed
if ($CFG->unicodedb) {
$db->Execute("SET NAMES 'utf8'");
}
break;

[After]
switch ($CFG->dbtype) {
case 'mysql':
/// Set names if needed
if ($CFG->unicodedb) {
// $db->Execute("SET NAMES 'utf8'");
}
break;
Mitsuhiro Yoshida への返信

Re: Can't get Japanese to work on Moodle 1.7

- robert maran の投稿
Thanks. I tried what you suggested, but it doesn't seem to make any difference. What should MySQL connection collation be set to? Does or will that make a difference?
Robert
Mitsuhiro Yoshida への返信

Re: Can't get Japanese to work on Moodle 1.7

- robert maran の投稿
Hi,
I took another look at what I had edited and realized that I had edited the wrong part! Changed the right part and now am happy to report that I can read Japanese script.

Thanks for your assistance in this. It was greatly appreciated!
Robert