I've installed .net fckeditor and have managed to get virtually everything working apart from the directory browser component. I would like to store images in a directory below root ie: /emfiles rather than /fckeditor/userfiles, though I wonder whether the location I set has any bearing on my problem. When I click on the image icon and then click on "Browse Server" I get this message:
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /GreenStay/adminx/FCKEditor/editor/dialog/FCKEditor/
However I CAN upload an image from the upload tab, though it is always uploaded to the /emfiles root (rather than /emfiles/image
My ASPX cofig file has the following settings:
// SECURITY: You must explicitly enable this "connector". (Set it to "true"). Enabled = true; // URL path to user files. UserFilesPath = "~/emfiles/"; // The connector tries to resolve the above UserFilesPath automatically. // Use the following setting it you prefer to explicitely specify the // absolute path. Examples: 'C:\\MySite\\userfiles\\' or '/root/mysite/userfiles/'. // Attention: The above 'UserFilesPath' URL must point to the same directory. UserFilesAbsolutePath = "";
Any ideas?