FCKEditor Issues with Final release
Posted: Fri Jul 11, 2008 1:56 am
Hi Guys
A couple of days ago, I downloaded the evaluation of what I presume was the 7.0 final release.
I came across an issue: when I used the image upload feature of FCKEditor I got a problem. An error message popped up telling me that "The server didn't send back a proper XML response".
Turns out that FCKEditor is not configured by default for aspx pages.
To get it working, I have to make modifications to two files:
1. fckeditor/fckconfig.js lines 270/271 should read like this:
var _FileBrowserLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
var _QuickUploadLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
2. fckeditor/editor/filemanager/connectors/aspx/config.ascx
Quick fix: alter line 41 to return true. More comlicated fix: implement authorisation checking code
Kind of surprised that nobody else has spotted this.....makes me wonder if I'm doing something wrong.......
Cheers
Tony
A couple of days ago, I downloaded the evaluation of what I presume was the 7.0 final release.
I came across an issue: when I used the image upload feature of FCKEditor I got a problem. An error message popped up telling me that "The server didn't send back a proper XML response".
Turns out that FCKEditor is not configured by default for aspx pages.
To get it working, I have to make modifications to two files:
1. fckeditor/fckconfig.js lines 270/271 should read like this:
var _FileBrowserLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
var _QuickUploadLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
2. fckeditor/editor/filemanager/connectors/aspx/config.ascx
Quick fix: alter line 41 to return true. More comlicated fix: implement authorisation checking code
Kind of surprised that nobody else has spotted this.....makes me wonder if I'm doing something wrong.......
Cheers
Tony