ckfinder在IE上不能使用flash上传问题的解决

来源:互联网 发布:郑海霞wnba数据 编辑:程序博客网 时间:2024/05/12 10:07

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

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


<static> {String} CKFinder.config.removePluginsSince: 2.0List 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 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';


原创粉丝点击