zoukankan      html  css  js  c++  java
  • 关于FCKeditor,上传文件时提示invalid request

    在使用FCKeditor的时候,里边有一个功能就是超链接中能选择文件上传,如图:

    image

    但是测试的时候发现这个功能一点“发送到服务器上”按钮,就会提示“invalid request”。最后从官方的一个帖子里得到了解决方法,感谢一下该贴作者。

    I had this problem as well. The problem is that it can't find the type of resource for upload. I assume that it should detect the resource type by file extension, but there is no code to do that.

    I fixed it by adding the resource type "File" in the config. I think this is a workaround, but it worked for me.

    So the link browser url looks somewhat like this (added Type=File&):
    FCKConfig.LinkBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=File
    &Connector=http://www.cnblogs.com/http://www.cnblogs.com/connector.' + _FileBrowserExtension;

    And the quick upload looks like this (added + '?Type=File' ):
    FCKConfig.LinkUploadURL = FCKConfig.BasePath + '../upload.' + _QuickUploadExtension + '?Type=File' ;

    也就是,在配置文件中(fckconfig.js)中将FCKConfig.LinkUploadURL 属性改为FCKConfig.BasePath + '../upload.' + _QuickUploadExtension + '?Type=File' ;
    即可。

  • 相关阅读:
    进程 线程
    random模块 时间模块 sys模块 os模块 json模块 pickle模块
    异常处理
    面向对象进阶篇
    面向对象初级篇
    正则表达式
    re模块的相关知识
    CNN归纳偏好
    window和Linux下安装nvidia的apex
    使用GrabCut做分割
  • 原文地址:https://www.cnblogs.com/yuanyuan/p/1657246.html
Copyright © 2011-2022 走看看