the server didn't send back a proper XML response. Please contract your syst

ckeditor出现the server didn't send back a proper XML response问题的解决(因为使用了“主题”) 这两天使用fckeditor时,完成上传文件时,出现the server didn't send back a proper XML response的问题。


从网上查了很多解决办法,多数是围绕着路径与权限展开的,


反复修改各项配置,把FCK删了重新添加,各种办法都没能成功。。。


而且我新建了一个网站,用相同的步骤进行设置,居然就可以成功上传。郁闷啊。。。我这个网站和别的网站用什么区别呢?


最后仔细看了看错误提示,其实人家给提示的很清楚:使用主题CSS文件要求页上有标头控件(例如<head runat="server">)。


出问题的网站中就使用了主题,而没问题的网站中没有用,难道是这个原因?


抱着试试看的心态,在响应异步请求的aspx文件(fckeditor\editor\filemanager\connectors\aspx\connector.aspx和upload.aspx)

中各添加了一句:<head runat="server"><title></title></head>(这样加后会有警告,可以再加上html和body标记)。


正确代码例子如下:


upload.aspx中代码


<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title></title>
</head>
<body>
    <FCKeditor:Config ID="Config" runat="server"></FCKeditor:Config>
</body>
</html>





你可能感兴趣的:(the server didn't send back a proper XML response. Please contract your syst)