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' ;
    即可。

  • 相关阅读:
    数据库的三大范式
    mysql中变量的定义
    java实现用两个栈实现队列
    java实现替换空格
    java实现二维数组中查找
    struts2核心配置之Action
    struts2核心配置之struts.xml
    初识struts2
    $.ajax()参数详解
    百度Map-JSAPI-覆盖物范围查询标记
  • 原文地址:https://www.cnblogs.com/yuanyuan/p/1657246.html
Copyright © 2011-2022 走看看