FCKEditor 发布到服务器后无法上传图片

以下是可能的原因:

1、检查路径UserFilesPath

web.config文件中

若发布为独立网站,其格式为: <add key="FCKeditor:UserFilesPath" value="/UploadFiles/"/>
若包含在站点中,其格式为: <add key="FCKeditor:UserFilesPath" value="~/UploadFiles/"/>

 

2、打开JS调试,若提示没有权限

1)、检查服务器上的上传目录本身是否添加了写权限。

2)、找到生成 FredCK.FCKeditorV2.dll的源文件(可到官网下载),在源码文件FileBrowser/FileWorkerBase.cs里找到这样一行代码:
Response.Write( @"(function(){var d=document.domain;while (true){try{var A=window.top.opener.document.domain;break;}catch(e) {};d=d.replace(/.*?(?:\.|$)/,'');if (d.length==0) break;try{document.domain=d;}catch (e){break;}}})();" );

将try{document.domain=d;}catch (e){break;}删除掉,重新编译成dll .

可参考:http://www.cnblogs.com/wangpei/archive/2009/06/27/1512228.html

你可能感兴趣的:(fckeditor)