I had some error in FCKeditorX with the file manager : XML server error 500 or something like that.
I just wanted to tell you that I solved this serious problem by adding the following lines at the end of modules/FCKeditorX/FCKeditor/editor/filemanager/browser/default/connectors/php/config.php :
Code: Select all
$Config['UserFilesAbsolutePath'] = $config['uploads_path'];
$logger->log("UserFilesAbsolutePath : ".$Config['UserFilesAbsolutePath']);
$Config['UserFilesAbsolutePath'] = substr($Config['UserFilesAbsolutePath'], strpos($Config['UserFilesAbsolutePath'], "/"));
$logger->log("UserFilesAbsolutePath : ".$Config['UserFilesAbsolutePath']);
$Config['UserFilesAbsolutePath'] = $Config['UserFilesAbsolutePath']."/" ;
$logger->log("UserFilesAbsolutePath : ".$Config['UserFilesAbsolutePath']);