I've read every posted topic that is similar to this and tried a number of the suggestions offered and I still cannot get the file browser/ image uploader to work. This is the exact error I'm getting:
The server didn't send back a proper XML response. Please contact your system administrator.
XML request error: OK (200)
Requested URL:
http://www.mysite.com/new_fckeditor/edi ... ommand=....
Response text:
I've tried changing the paths in the config file and clearing my cache but nothing has worked. The odd thing I think is that the link has ../../ in the middle of it. Why would it go down to the default directory and then try to go back up 2 directories? I wonder if this is where the issue lies and if so where do I go to fix it?
I implemented the exact same thing on a different server last week and had ZERO problems with it. I have done everything the same with this installation and yet I'm getting this error no matter what paths I set.
Any suggestions would be greatly appreciated.
Edit: the link doesn't display as I typed it. Note that in the middle of the link is "default/../../connectors" etc.
Also, I tried the one in the sample directory and it is giving the same error.
Fri, 02/01/2008 - 20:20
#1
Re: XML request error (no Response text)
Re: XML request error (no Response text)
Re: XML request error (no Response text)
Re: XML request error (no Response text)
Re: XML request error (no Response text)
Jeez. The grief caused by my FTP program!! I thought I checked to make sure they all copied over too.
Those of you with similar errors using php - I'd check to make sure all the files are there.
Good luck!!
Re: XML request error (no Response text)
I also tried the CKFinder and it gives the same error.
Peace.
Re: XML request error (no Response text)
I've the same problem, however only in IE7.
I do not have the problem on the demo page ( http://www.fckeditor.net/demo )
Some details:
Browser: IE7 and IE6 ( not in Firefox, didn't test other then IE and FF )
Connector: PHP
---[ edit ]-------------------------
After some debugging I found that some filenames are not properly encoded.
To temporarily fix this, I've changed: editor/filemanager/connectors/php/commands.php:83
From:
To:
NOTE:
This doesn't fix the problem because the broken files won't show with this hack, however the XML is valid, so other files can be selected and you don't get that pretty error.
I've wrote a small script which you can use to check if that is the case for your XML response. should you have troubles figuring out what it does drop me a line.
Re: XML request error (no Response text)
Did that happen on Windows or Linux server?
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: XML request error (no Response text)
I'm getting the same problem and also a 501 error when trying to post so I'm attaching my post as a txt file. It contains all the information on my platform and settings that I hope will help debug this issue.
The forums error I am getting is
Method Not Implemented
POST to /forums/posting.php not supported.
Apache/2.2.0 (Fedora) Server at http://www.fckeditor.net Port 80
I thought it might because there was some PHP in the post so wrapped it in [code] but still the error.
Attachments:
Re: XML request error (no Response text)
This error occurs in IE7 if the php-connector find some files with special-chars:
For example, if you use an & (ampersand) or a german - so called - "Umlaut" as ä,ö,ü HTML: ä &öuml; ü
If i find the time, i will post a solution. Shuold only be a small change in upload.php...
Re: XML request error (no Response text)
I think, it is solved. Just change line 209 in commands.php:
from:
to:
every char not matching to the regular expression will be removed. You may add some chars to the expression, if you really need it...
But i think most users could live with this solution
Re: XML request error (no Response text)