在本地用FCKEditor测试能上传图片,可把代码上传到网上后用FckEditor就不能上传了,也不是不能上传,用Ftp打开也能找到上传的图片,可就是在上传的时候一直定在上传缓冲中,如下图

解决方案 »

  1.   

    就是一直在上传的状态,可是已经上传到了指定的文件夹中了,可总是一直处在上传的状态
    代码如下<appSettings>
        <add key="FCKeditor:BasePath" value="~/fckeditor/"/>
        <add key="FCKeditor:UserFilesPath" value="~/FileUpload/FckFiles/"/>
      </appSettings>
      

  2.   

    使用FredCK.FCKeditorV2.dll2.6.3,在editor\filemanager\connectors\aspx目录下  
    修改config.ascx,配置上传文件路径  
    UserFilesPath = "/UserFiles/";  
    TypeConfig[ "File" ].FilesPat= "%UserFilesPath%file/";
    文件夹操作权限
      

  3.   

    给上传的目录文件夹添加权限:
    XP asp.net;其他:network
    然后就OK了!
      

  4.   

    webconfig 配置:<appSettings>
    <!--FCKeditor用于附件上传路径-->
    <add key="FCKeditor:UserFilesPath" value="~/upload"/>
    </appSettings>
      

  5.   

    这个要改原DLL的。。 我前段时间也遇到了  ,搞的好久 在的话加我QQ329517845我发你个试试
      

  6.   

    或者看下这个  照这这个改下也行 http://hi.baidu.com/allenwdj/blog/item/7b451426e7670a1b8b82a1f0.html
      

  7.   

    不知道你错在哪里啦,但我使用一直没问题的。2、配置Fckeditor:新建Web.config文件,在<appSettings>中加入:<!-- FCKeditor 附件上传路径--><add key="FCKeditor:UserFilesPath" value="~/upload"/>3、页面引用:<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>4、使用:<FCKeditorV2:FCKeditor ID="fckContents" runat="server" Height="500px" Width="100%"
                    BasePath="~/fckeditor/" ToolbarSet="">
    </FCKeditorV2:FCKeditor>5、取值与赋值:string content = fckContents.Value;fckContents.Value = "<b>泰安网站建设</b>";Fckeditor配置及应用示例