This file uploader is disabled. Please check the "editor/filemanager/connectors/php/config.php" file.

第一次在使用fck上传图片时候遇到这样的错误:This file uploader is disabled. Please check the "editor/filemanager/connectors/php/config.php" file.   很是纳闷,不知道是什么错误,在网上搜了下才知道

报错的原因是:FCKeditor的安全机制阻止了上传文件,上传文件牵扯到很多的网站漏洞,FCKeditor要求对其配置文件进修改,修改$Config['Enabled'] = false,为TRUE。当然这样修改是最不好的,没考虑的身份认证问题
// SECURITY: You must explicitly enable this "connector". (Set it to "true").安全性:你必须明确自己运行connector的状态
// 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 你必须确定只有通过用户验证和SESSION验证的人才可以访问这个文件。(所以你可以添加相应的代码到该文件 以限制只有一部分人可以使用,提高安全性)

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