Link to home
Start Free TrialLog in
Avatar of Elham_Seif
Elham_Seif

asked on

Error message when adding on FCKeditor. "The server didnt send back a proper XML response. Please contact your system administrator."

Hi
I'm using FCKeditor 2.6.4  in my website designed with ASP.NET 2005 and c#.
When I try to add an image to the html, using Image button a page will show up(pic 1).
The error occures when I click on "Browse Server". the error  (pic 2) is:

"The server didnt send back a proper XML response. Please contact your system administrator."
"XML request error: OK (200) "

I found hundreds of questions on the internet but no one could solve my problem.
Please tell me what to do.
1.JPG
2.JPG
ASKER CERTIFIED SOLUTION
Avatar of blacksix
blacksix

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Elham_Seif
Elham_Seif

ASKER

Thanks for your hint about PHP script. PHP wasn't installed on my computer. But Instead of installing PHP I just changed a parameter
_FileBrowserLanguage and _QuickUploadLanguage in fckconfig.js from PHP to ASPX. This way I use connector.aspx instead of connector.PHP.
Then there was another error about activing connector.aspx which was easily solved by returning true in it's CheckAuthentication method in config.ascx.
after that I faced another error with error code 500. I solve it by managing UserFilesPath parameter in config.ascx file. I set it to
  UserFilesPath = Request.ApplicationPath + "/"; // "/userfiles/";
and I add image directory to the root of my application.
Anyway, thanks for your help.