Sorry,can't map "UserFilesPath" to a physical path. You must set the "UserFilesAbsolutePath" value in "editor/filemanager/connectors/php/config.php".
我的FCKeditor,出现了上面的问题,那位老兄帮我看看 

解决方案 »

  1.   

    打开:editor/filemanager/connectors/php/config.php
    找到:
    配置文件
    $Config['Enabled'] = true ;
    $Config['UserFilesPath'] = '/userfiles/' ;
    $Config['UserFilesAbsolutePath'] = '' ;
    修该$Config['UserFilesAbsolutePath'] = '' ; 为:$Config['UserFilesAbsolutePath'] = $_SERVER['DOCUMENT_ROOT'].'/userfiles/' ;提示的意思是不能映射目录,要求你使用"UserFilesAbsolutePath" (用户文件绝对目录)。
      

  2.   

    iclew.org是用Drupal实现的,也用了FCKEditor