I have been using FCKeditor in a website I am creating and have so far been impressed with it's functionality. However, I do not seem able to get the File Browser functionality working. Whenever I click on "Browse server", I get an XML request error: Internal server error 500. I have read through a number of the posts in the forums, but can't seem to find a solution that works.
I am using the php connector, and other simple php pages work correctly on my server.
One thing I have found is that the connector.php page seems to fail whenever parameters are passed into via the URL. I have been able to replicate this same failure by creating a simple HTML form which calls a php page to display the passed form parameters. When I use method=GET with $_GET, the page fails with the same error as above. If I change the HTML form to use method=POST and $_POST in the php page, the parameters are passed correctly.
Does anyone know if I need to amend something in the php.ini file on my server to get this functionality working? Any suggestions gratefuly received.
I am using the php connector, and other simple php pages work correctly on my server.
One thing I have found is that the connector.php page seems to fail whenever parameters are passed into via the URL. I have been able to replicate this same failure by creating a simple HTML form which calls a php page to display the passed form parameters. When I use method=GET with $_GET, the page fails with the same error as above. If I change the HTML form to use method=POST and $_POST in the php page, the parameters are passed correctly.
Does anyone know if I need to amend something in the php.ini file on my server to get this functionality working? Any suggestions gratefuly received.

Re: Cannot set up file browser functionality
Hi

i have been trying for about 5 days to get this editor to work and our hosting site can not seem to find a fix for this so i am asking for someones help because no one seems to know how to fix.
The server did't send back a proper XML responce. Please contact your system administrator.
XML request error : Internal Server Error ( 200 ) and after i re update the FCK editor files to the server : Internal Server Error ( 500 )
Requested URL :
http://www.yourstore dot com/vsadmin/editor/filemanager/browser/default/browser.html?Type=Image&Connector=../../connectors/asp/connector.asp?Command= and so on and so on
Responce text:
<?xml verson="1.0" encoding="utf-8" ?><Connector command="GetFoldersAndFiles&Type=Image"><CurrentFolder path="/" url="/"/> <font face="Arial" size=2>
<p>Microsoft VBScript runtime </font> <font face="Arial"=2>error '800a0007' </font>
<p>
<font face="Arial" size=2>Out of memory : 'Server . CreatorObject' </font>
<p>
<font face="Arial" size=2>/vsadmin/editor/filemanage/connectors/asp/io.asp</font><font face="Arial" size=2>,line78</font>
I feel the error is in the middle of the url ../../ why is this in the middle of the url
Thank you for your help
ccr
Re: Cannot set up file browser functionality
If that fails, then it's some setting on the server that might be blocking it., if it works, then open the io.asp file and start writing response.write messages to understand exactly why it fails.
Re: Cannot set up file browser functionality
Set oFSO = Server.CreateObject( "Scripting.FileSystemObject" )
...fails with an "out of memory" error.
I can't get a decent error out of the system by changing...
If ( NOT oFSO.FolderExists( sParent ) ) Then CreateServerFolder( sParent )
...to...
If ( NOT oFSO.FolderExists( sParent ) AND sParent<>"" ) Then CreateServerFolder( sParent )
Then I get an error "You have no permissions to create the folder."
This sounds more reasonable but what I don't understand is, if I'm just browsing the server why am I trying to create folders? Any help on this matter would be greatly appreciated.
Many Thanks!
Vince
Re: Cannot set up file browser functionality
Re: Cannot set up file browser functionality
Vince