Add the following line in
the /filemanager/browser/default/connectors/php/comman
ds.php file in order to replace all characters unreadable
in an URL by an underscore (_)
In function FileUpload around line 143 after
// Get the uploaded file name.
$sFileName = $oFile['name'] ;
$sOriginalFileName = $sFileName ;
#### LINE TO ADD ####
$sFileName = eregi_replace("[^a-z0-9.]", "_",
$sFileName);
Could be a lot improved because it only keep the
numerical and alphabetical characters and the point (for
file extension) but it was enough for my need ;-)
Cheers
Nicolas
Logged In: YES
user_id=1541130
Hi could you give me the same solution in asp!!!
Thanks
Logged In: YES
user_id=1356422
Originator: NO
Moved to http://dev.fckeditor.net/ticket/1380#comment:1
Thank