ckfinder_php_3.4.4 IIS 报错 无效请求 (Invalid request)
Apache 正常,但是在IIS环境下报错,解决方法 设置 C:\Windows\Temp 目录 给 用户 IIS_IUSERS 读写权限
问题解决
ckfinder 设置 显示报错详细信息, ckfinder/config.php
// Production error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT); ini_set('display_errors', 0); // Development // error_reporting(E_ALL); // ini_set('display_errors', 1);
修改为
// Production // error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT); // ini_set('display_errors', 0); // Development error_reporting(E_ALL); ini_set('display_errors', 1);