`
piperzero
  • 浏览: 3479392 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
文章分类
社区版块
存档分类
最新评论

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

 
阅读更多

项目在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 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';


分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics