FCKEditor 用户上传问题

Java整合FCKEditor时,上传功能是禁止的。

要修改fckeditor\editor\filemanager\connectors\php文件夹下的config.php

找到

global $Config ;

// SECURITY: You must explicitly enable this "connector". (Set it to "true").
// WARNING: don't just set "$Config['Enabled'] = true ;", you must be sure that only
//  authenticated users can access this file or use some kind of session checking.
$Config['Enabled'] = true ;

改为TRUE即可。

你可能感兴趣的:(PHP,fckeditor,Security,Access)