Hello:
I use fckeditor in my web. When I keep chinese version, I click images button in the Toolbar. Then open browser dialog to upload image. So I uploaded a file with chinese name's image file, it can uploaded successfully. But previwe dialog wasn't show picture..the source file is that : /fckeditor/&6^.jpg, that said the source file is not currect. Because that file name is modified other(error code). How can I solute that ?
thanks.
I use fckeditor in my web. When I keep chinese version, I click images button in the Toolbar. Then open browser dialog to upload image. So I uploaded a file with chinese name's image file, it can uploaded successfully. But previwe dialog wasn't show picture..the source file is that : /fckeditor/&6^.jpg, that said the source file is not currect. Because that file name is modified other(error code). How can I solute that ?
thanks.

Re: Not support chinese?
my solution is to change the default chinese name to some alphabetic or numerical name. For example, add the following line to fckeditor/editor/filemanager/connectors/php/commands.php in function FileUpload(...):
$sFileName = date("YmdHis").rand(100, 200).".".$sExtension;betweenandEnjoy!