当前位置:首页 » 配置JavaScript » ckfinder在IE上不能使用flash上传问题的解决
ckfinder在IE上不能使用flash上传问题的解决
来自:新思网络时间:2012-07-02 11:24:30

项目在IE中使用ckfinder上传文件时,会出现“因为安全原因,文件不可浏览. 请联系系统管理员并检查CKFinder配置文件.”的提示,我也没认真去研究ckfinder, 因为使用ckfinder上传的话,要有相关的权限才能去进行上传操作,所以想到可能是flash没传输cookie到服务器吧,相关认证信息不传输的话后台也就没法去进行权限管理了,也就变为无权限去操作了。记得以前使用swfupload的时候是要加入认证字段的。

解决:直接去使用config.removePlugins = 'flashupload';配置去掉flash上传插件,使用普通上传或html5的上传功能。


 

<static> {String} CKFinder.config.removePlugins
Since: 2.0
List of plugins that must not be loaded. This is a tool setting which makes it easier to avoid loading plugins that are otherwise automatically loaded by CKFinder.

// Disable flash thinksnet/uploads.
config.removePlugins = 'flashupload';

// Remove the "Basket" folder in the folders pane.
config.removePlugins = 'basket';

// Remove the "Help" button.
config.removePlugins = 'help';

// Remove all the three plugins above.
config.removePlugins = 'help,basket,flashupload';
关键词:ckfinder,上传