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
http://www.yourstore
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