Hi, I had errors similar to what has been posted on the forum to do with file/image uploads. Since I am using .NET, I changed my fckconfig.js file to be as follows (in the appropriate place):
var _FileBrowserLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py var _QuickUploadLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
Then I created the following directories in my web app:
/userfiles/image/
Then I changed my config.ascx file as follows:
// URL path to user files. //UserFilesPath = "/userfiles/"; UserFilesPath = "~/userfiles/";
I was then able to upload an image to the (asp.net) webserver running locally in VS. I am yet to deploy this app and try on a real server. Hope this helps anyone else who has had similar problems as me deploying fckeditor in .NET. By the way, for what its worth;I still reckon that the fckeditor is pretty cool - can't wait to utilise its full potential (assuming I can get there!)
Re: Error: check the "editor/filemanager/connectors/aspx/co
Re: Error: check the "editor/filemanager/connectors/aspx/co
I had errors similar to what has been posted on the forum to do with file/image uploads.
Since I am using .NET, I changed my fckconfig.js file to be as follows (in the appropriate place):
var _FileBrowserLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
var _QuickUploadLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
Then I created the following directories in my web app:
/userfiles/image/
Then I changed my config.ascx file as follows:
// URL path to user files.
//UserFilesPath = "/userfiles/";
UserFilesPath = "~/userfiles/";
I was then able to upload an image to the (asp.net) webserver running locally in VS. I am yet to deploy this app and try on a real server.
Hope this helps anyone else who has had similar problems as me deploying fckeditor in .NET.
By the way, for what its worth;I still reckon that the fckeditor is pretty cool - can't wait to utilise its full potential (assuming I can get there!)
Re: Error: check the "editor/filemanager/connectors/aspx/co