| Joomla! http://forum.joomla.org/ |
|
| FCK Editor - XML request error: Internal Server Error (500) http://forum.joomla.org/viewtopic.php?f=57&t=39654 |
Page 1 of 1 |
| Author: | bleimone [ Mon Feb 20, 2006 6:16 pm ] |
| Post subject: | FCK Editor - XML request error: Internal Server Error (500) |
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 |
|
| Author: | darwinsguppie [ Tue Sep 05, 2006 2:41 am ] |
| Post subject: | Re: FCK Editor - XML request error: Internal Server Error (500) |
I am running into the same issue. Did you ever figure out the cause? |
|
| Author: | j3cubcapt [ Thu Sep 28, 2006 3:31 am ] |
| Post subject: | Re: FCK Editor - XML request error: Internal Server Error (500) |
I'm in the same boat and sinking. Any simple instructions about hwo to correct this? |
|
| Author: | ruibraz [ Thu Sep 28, 2006 4:25 pm ] |
| Post subject: | Re: FCK Editor - XML request error: Internal Server Error (500) |
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? |
|
| Author: | ruibraz [ Thu Sep 28, 2006 4:59 pm ] |
| Post subject: | Re: FCK Editor - XML request error: Internal Server Error (500) |
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. |
|
| Author: | dwj [ Fri Mar 09, 2007 3:01 pm ] |
| Post subject: | Re: FCK Editor - XML request error: Internal Server Error (500) |
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
|
|
| Author: | sergio_bsa [ Tue Jul 31, 2007 10:44 am ] |
| Post subject: | Re: FCK Editor - XML request error: Internal Server Error (500) |
"set 755 recursively to all sub directories and now works" + set 755 to connector.php it work
|
|
| Author: | jgull [ Mon Oct 08, 2007 12:56 pm ] |
| Post subject: | Re: FCK Editor - XML request error: Internal Server Error (500) |
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 |
|
| Author: | adelimateus [ Thu Nov 08, 2007 4:03 am ] |
| Post subject: | Re: FCK Editor - XML request error: Internal Server Error (500) |
moment ... |
|
| Author: | Run4it [ Wed Nov 14, 2007 12:21 am ] |
| Post subject: | Re: FCK Editor - XML request error: Internal Server Error (500) |
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 |
|
| Author: | tekguc [ Thu Nov 29, 2007 3:45 pm ] |
| Post subject: | Re: FCK Editor - XML request error: Internal Server Error (500) |
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 |
|
| Author: | schlogo [ Wed Dec 05, 2007 12:39 am ] |
| Post subject: | Re: FCK Editor - XML request error: Internal Server Error (500) |
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
|
|
| Author: | Calimer0 [ Wed Dec 05, 2007 9:17 am ] |
| Post subject: | Re: FCK Editor - XML request error: Internal Server Error (500) |
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! |
|
| Author: | delbono [ Fri Jan 11, 2008 4:50 pm ] |
| Post subject: | Re: FCK Editor - XML request error: Internal Server Error (500) |
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 ; } ?> |
|
| Author: | doublef [ Wed Jan 16, 2008 2:14 am ] |
| Post subject: | Re: FCK Editor - XML request error: Internal Server Error (500) |
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...
|
|
| Author: | jmatt [ Tue Aug 05, 2008 7:47 am ] |
| Post subject: | Re: FCK Editor - XML request error: Internal Server Error (500) |
hello doublef thank you for share us with your method. |
|
| Author: | diamondblast [ Sun Nov 09, 2008 9:43 am ] |
| Post subject: | Re: FCK Editor - XML request error: Internal Server Error (500) |
it seems really easy once you see it... how come I didn't think about it thanks a lot |
|
| Author: | Jypsy [ Wed Nov 26, 2008 4:50 pm ] |
| Post subject: | Re: FCK Editor - XML request error: Internal Server Error (500) |
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. |
|
| Page 1 of 1 | All times are UTC |
| Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group http://www.phpbb.com/ |
|