一,找到 /fck/editor/filemanager/connectors/php/util.php :
return(utf8_encode(htmlspecialchars($value)));
改为
return mb_convert_encoding(htmlspecialchars($value),"UTF-8","GBK");
保存.
二,接着找到 /fck/editor/filemanager/connectors/php/command.php :
$sFileName=$oFile['name'];
后面加一行
$sFileName=mb_convert_encoding($sFileName,"GBK","auto");