I downloaded the patch file: FileBrowserConnector.cs and rebuilt the .net dll. So I should be up to date on files.
I am using FileMon on Windows, and I see that v2 is trying to use the .../asp/connector.asp file. Why is this? It needs to use the connector.aspx file. How do you control this?
Also, using FileMon I see that v2 is looking for UserFiles directory in the top level IIS root directory. This needs to be changed, how do you control this?
Also, I am getting the xml request error: internal server error (500). There must be a fix for this by now.
Thanks for any assistance.
I am using FileMon on Windows, and I see that v2 is trying to use the .../asp/connector.asp file. Why is this? It needs to use the connector.aspx file. How do you control this?
Also, using FileMon I see that v2 is looking for UserFiles directory in the top level IIS root directory. This needs to be changed, how do you control this?
Also, I am getting the xml request error: internal server error (500). There must be a fix for this by now.
Thanks for any assistance.
RE: How to set up asp.net file browser?
1) First, you need to download the latest asp.net source FCKeditor.Net 2.0 from http://www.fckeditor.net/download/default.html.
2) Then complie the project, and you should have a FredCK.FCKeditorV2.dll in your project/bin folder.
3) Create a bin folder in your FCKeditor IIS virtual directory. Mine is
C:\Inetpub\FCKeditor\bin (this directory should have fckeditor.js etc. files too)
Now your connectors\aspx\connector.aspx should work.
If you want to change the default UserFiles directory, you have to modify the FileBrowserConnector.cs source code.
RE: How to set up asp.net file browser?
RE: How to set up asp.net file browser?
private const string DEFAULT_USER_FILES_PATH = "/UserFiles/" ;
Good call on FileMon, that definitely helped me debug these path problems.
RE: How to set up asp.net file browser?
Thanks very much.