ECShop后台文章管理,上传图片时出现错误:This file uploader is disabled. Please check the…网上搜索下,有不少人给出的解决方案如下:This is a FCKEditor error when you try to upload image. FCKEditor is a WYSIWYG (what you see is what you get) HTML editor. As what the message said, file uploader is disabled so you cant use it. To enable, open the “editor/filemanager/connectors/php/config.php” file and look for the following line
$Config[‘Enabled’] = false ;
change to
$Config[‘Enabled’] = true ;
done…
确实,这样修改后可以解决问题,但是在安全性方面有欠考虑。因为从提示中可以看出,这是因为这个操作是通过用户权限来进行判断的,如果改成了true,在安全性上很容易被攻击。
出现这个错误的原因,是因为你之前登录的时候时间已经到了,系统把你踢了,重新登录下后台再次重新操作下就好了。
评论前必须登录!
注册