I have the exact issue. I successfully deployed to Tomcat, then receive this error in JBoss. I've tried the 2 posts that have replies, but those suggestions didn't work. As soon as I figure it out, I'll b e sure to post what I did. Please do the same.
I have the same problem, I'm using the lastest version with the asp.net plugin. The XML error returns the php connector, I assume it's meant to be calling the asp connector but not sure how to change it?
My issue is resolved. Apparently the util.php file didn't copy over. I just copied that file and it works perfectly. 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.
Did anyone else figure out another solution? Posting the util.php did not fix my problem. I tried the sample and none of it works. I am using the asp version. Help if you can.
I also tried the CKFinder and it gives the same error.
<?php
/**
* URL to your FCKeditor directory,
* defaults set to the php connector, using your images dir in: domain.com/
* the rest is done with the config in your: connectors/php/config.php file
*
*/
$url = 'http://www.domain.com/FCKeditor/editor/filemanager/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=Image&CurrentFolder=%2F';
/**
* Getting the return value of your filemanager.
* if you can use fopen wrappers, you can go to the file yourself and paste the
* string between single quotes: $str = '';
* And comment out this line:
*/
$str = file_get_contents( $url );
//- no config needed below this line -\\
$len = strlen($str);
$cor = array();
$cols = strlen($len);
echo "\n\nCharacter`s found:\n";
for ($i=0; $i < $len; $i++ ) {
$ord = ord( $str[ $i ]);
if (($ord < 32) || ($ord > 126)) {
$cor[ $i ] = $str[ $i ];
printf("[%0". $cols ."d] <b>%s</b> ord(%d)\n", $i, $str[ $i ], $ord );
}
}
if ( count($cor)>0 ) {
echo "\n\nPhrases with corrupt XML:\n";
foreach ($cor as $index=>$fubar) {
$start = max(0, ($index-20));
echo substr( $str, $start, 40 ) ."\n";
}
} else {
echo "None! No 'hidden' XML corruption found.\n";
}
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)
http://www.fckeditor.net/demo
filenames
temporarilyeditor/filemanager/connectors/php/commands.php:83
From:
To:
NOTE:broken
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)
http://www.fckeditor.net
Attachments:
Re: XML request error (no Response text)
Re: XML request error (no Response text)
$sFilePath = $sServerDir . preg_replace('/[^a-zA-Z0-9\. _-]/','',$sFileName) ;Re: XML request error (no Response text)