Joomla! Discussion Forums



It is currently Tue Nov 24, 2009 5:14 pm (All times are UTC )

 


Forum rules

Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.



Post new topic Reply to topic  [ 18 posts ] 
Author Message
Posted: Mon Feb 20, 2006 6:16 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Wed Feb 01, 2006 8:18 pm
Posts: 38
Hello -

I am receiving the following error when I am trying to use the image browser / upload. There is some directions on the
FCK editor website about changing the settings for PHP rather than ASP. But if I am reading the code right - its already
changed. Can anyone help?

XML request error: Internal Server Error (500)


Thank you.

Brian


Top
  E-mail  
 
Posted: Tue Sep 05, 2006 2:41 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Wed Apr 26, 2006 3:12 am
Posts: 10
I am running into the same issue.  Did you ever figure out the cause?


Top
  E-mail  
 
Posted: Thu Sep 28, 2006 3:31 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Aug 31, 2006 12:41 am
Posts: 27
I'm in the same boat and sinking.

Any simple instructions about hwo to correct this?


Top
   
 
Posted: Thu Sep 28, 2006 4:25 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Mon Sep 25, 2006 4:14 pm
Posts: 13
With the problem only occurs with Joomla 1.0.11. JoomlaFCK 1.2 is working fine in Joomla 1.0.10.
I installed JCE and it works fine, but I would also like to see FCK fixed, it's much more simple to install.

Suggestions anyone?


Top
   
 
Posted: Thu Sep 28, 2006 4:59 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Mon Sep 25, 2006 4:14 pm
Posts: 13
Found a solution - at least for my case.

Used JoomlaXplorer to CHMOD the JoomlaFCK folder (in YOURSITE/mambots/editors/) from 777 to 755. Now it works.

Hope this helps.


Top
   
 
Posted: Fri Mar 09, 2007 3:01 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Oct 13, 2006 9:11 am
Posts: 11
Hi, had the same problem but was unable to solve it by filezilla & chmod 755 on the editor folder.

with jommlaxplorer i set 755 recursively to all sub directories and now works  :laugh:


Top
  E-mail  
 
Posted: Tue Jul 31, 2007 10:44 am 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Thu Jul 12, 2007 7:01 pm
Posts: 2
"set 755 recursively to all sub directories and now works" + set 755 to connector.php

it work  ;D


Top
   
 
Posted: Mon Oct 08, 2007 12:56 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Mon Oct 08, 2007 12:49 pm
Posts: 1
I have the same problem and I changed file chmod to 755 but still gets en error message

"The server didn't reply with a proper XML data, please check your configuration"


Any help will be much appreciated


Top
   
 
Posted: Thu Nov 08, 2007 4:03 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Wed Oct 11, 2006 6:40 pm
Posts: 20
moment ...


Last edited by adelimateus on Thu Nov 08, 2007 4:08 am, edited 1 time in total.

Top
  E-mail  
 
Posted: Wed Nov 14, 2007 12:21 am 
Joomla! Explorer
Joomla! Explorer
Offline

Joined: Mon Mar 12, 2007 7:41 pm
Posts: 266
I am having this same issue and am pulling hair out looking for solution.  I do not understand this thread:
Used JoomlaXplorer to CHMOD the JoomlaFCK folder (in YOURSITE/mambots/editors/) from 777 to 755


Top
  E-mail  
 
Posted: Thu Nov 29, 2007 3:45 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Tue Jan 16, 2007 2:27 pm
Posts: 3
after I installed version 2.4.4a, I have faced with this error:

Using the Image tool,  clicking on Browse server I got the following error message

Quote:
The server didn't reply with a proper XML data, please check your configuration

or
Quote:
The server didn't send back a proper XML response...

XML request error: OK (200)


I have solved the problem by changing /mambots/editors/fckeditor/editor/filemanager/browser/default/connectors/php/config.php with this code:
Code:
<?php

/*

* FCKeditor - The text editor for Internet - http://www.fckeditor.net

* Copyright (C) 2003-2007 Frederico Caldeira Knabben

*

* == BEGIN LICENSE ==

*

* Licensed under the terms of any of the following licenses at your

* choice:

*

*  - GNU General Public License Version 2 or later (the "GPL")

*    http://www.gnu.org/licenses/gpl.html

*

*  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")

*    http://www.gnu.org/licenses/lgpl.html

*

*  - Mozilla Public License Version 1.1 or later (the "MPL")

*    http://www.mozilla.org/MPL/MPL-1.1.html

*

* == END LICENSE ==

*

* Configuration file for the File Manager Connector for PHP.

*/









global $Config,$mosConfig_absolute_path, $mosConfig_live_site ;
// Joomla configuration.php to extract installation pathes

require_once("../../../../../../../../../configuration.php");








// SECURITY: You must explicitelly enable this "connector". (Set it to "true").

$Config['Enabled'] = true ;

















// Path to user files relative to the document root.

$Config['UserFilesPath'] = $mosConfig_live_site;

//raj

$sRealPath = realpath( './' ) ;

$sSelfPath = $_SERVER['PHP_SELF'] ;

$sSelfPath = substr( $sSelfPath, 1, strrpos( $sSelfPath, '/' ) ) ;

$ex= explode('/',$sSelfPath) ;









$Config['UserFilesPath'] = $mosConfig_live_site;









// Fill the following value it you prefer to specify the absolute path for the

// user files directory. Usefull if you are using a virtual directory, symbolic

// link or alias. Examples: 'C:\\MySite\\userfiles\\' or '/root/mysite/userfiles/'.

// Attention: The above 'UserFilesPath' must point to the same directory.

$Config['UserFilesAbsolutePath'] = $mosConfig_absolute_path;









// Due to security issues with Apache modules, it is reccomended to leave the

// following setting enabled.

$Config['ForceSingleExtension'] = true ;









$Config['AllowedExtensions']['File']   = array() ;

$Config['DeniedExtensions']['File']      = array('html','htm','php','php2','php3','php4','php5','phtml','pwml','inc','asp','aspx','ascx','jsp','cfm','cfc','pl','bat','exe','com','dll','vbs','js','reg','cgi','htaccess','asis','sh','shtml','shtm','phtm') ;









$Config['AllowedExtensions']['Image']   = array('jpg','gif','jpeg','png') ;

$Config['DeniedExtensions']['Image']   = array() ;









$Config['AllowedExtensions']['Flash']   = array('swf','fla') ;

$Config['DeniedExtensions']['Flash']   = array() ;









$Config['AllowedExtensions']['Media']   = array('swf','fla','jpg','gif','jpeg','png','avi','mpg','mpeg') ;

$Config['DeniedExtensions']['Media']   = array() ;









?>


Umut TEKGÜÇ,
QuickWASP Limited
www.quickwasp.com


Last edited by tekguc on Thu Nov 29, 2007 3:47 pm, edited 1 time in total.

Top
  E-mail  
 
Posted: Wed Dec 05, 2007 12:39 am 
Joomla! Intern
Joomla! Intern
Offline

Joined: Sat Nov 19, 2005 4:35 pm
Posts: 51
worked for me but by default, it browses the root folder, what could I modify to change this path?  ??? Thanks anyway for sharing your solution  8)


Top
   
 
Posted: Wed Dec 05, 2007 9:17 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Wed Oct 17, 2007 11:45 am
Posts: 8
Works for me too,
thanks for this solution, but was was changed exactly in the new config.php?
the root folder is fine for me, even better than before!


Top
  E-mail  
 
Posted: Fri Jan 11, 2008 4:50 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Fri Jan 11, 2008 4:41 pm
Posts: 4
schlogo wrote:
worked for me but by default, it browses the root folder, what could I modify to change this path?  ??? Thanks anyway for sharing your solution  8)


After a lot of attempts, I solved the "It browses the root folder" by hardcoding the path in connector.php at the end of the file (to me it was line 97), without the leading slash.

>  $sCurrentFolder = './images/stories'.$sCurrentFolder;

Like this:


Code:
  $sCurrentFolder = './images/stories'.$sCurrentFolder;
   // Execute the required command.
   switch ( $sCommand )
   {
      case 'GetFolders' :
         GetFolders( $sResourceType, $sCurrentFolder ) ;
         break ;
      case 'GetFoldersAndFiles' :
         GetFoldersAndFiles( $sResourceType, $sCurrentFolder ) ;
         break ;
      case 'CreateFolder' :
         CreateFolder( $sResourceType, $sCurrentFolder ) ;
         break ;
   }

   CreateXmlFooter() ;

   exit ;
}
?>


Last edited by delbono on Fri Jan 11, 2008 5:45 pm, edited 1 time in total.

Top
  E-mail  
 
Posted: Wed Jan 16, 2008 2:14 am 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Mon Jan 14, 2008 11:27 pm
Posts: 1
Quote:
The server didn't send back a proper XML response...

XML request error: OK (200)


I have faced with the same error too...

None of the methods i tried, solved it...

At the end i saw that, some files which have special characters (for me Turkish characters) in the name caused that error...

I simply renamed that file and now no error for me...  8)


Top
  E-mail  
 
Posted: Tue Aug 05, 2008 7:47 am 
User avatar
Joomla! Intern
Joomla! Intern
Offline

Joined: Sat Jul 26, 2008 5:41 am
Posts: 73
hello
doublef
thank you for share us with your method. :)

_________________
Download popular free ebooks, classical free ebooks, new releases and more.http://www.ebook-x.com/
Home of online games, online game, flash games, free online game, free online games, flash game:http://www.online-flash-game.com/


Top
  E-mail  
 
Posted: Sun Nov 09, 2008 9:43 am 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Thu Jul 24, 2008 3:18 pm
Posts: 1
it seems really easy once you see it...
how come I didn't think about it :) I don't know...
thanks a lot


Top
  E-mail  
 
Posted: Wed Nov 26, 2008 4:50 pm 
User avatar
Joomla! Intern
Joomla! Intern
Offline

Joined: Tue Nov 07, 2006 7:21 am
Posts: 75
How do I get rid of this editor? What do I have to do to disable the whole thing?
suddenly nothing works like it should. I get the XML request error response (500). and the panel forces me to force quit my browser (Firefox) losing everything.
Tried changing the chmod from777 to 755, but it will not do the subfolders, etc. tried changing in config to no WYSIWYG editors, but when I go to my edit panel, there is no imges in the gallery to pick and the html still says it's using the fckeditor for images.

_________________
Joomla! 1.0.15, AcaJoom 3.0.7, Wordpress 2.5,
... on a Mac OSX 1.3.9, Panther with Safari 1.3.2, Firefox 2.0.0.18, camino browsers, on SiteGround Host
MAMP with Joomla 1.5.6


Top
  E-mail  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 18 posts ] 

Quick reply

 



Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group