I had a similar problem and I changed the Line #132 & 133 in include/FCKeditor/fckconfig.js to 'php' (it was set to 'asp' earlier)
Code:
var _FileBrowserLanguage = 'php' ; // asp | aspx | cfm | lasso | perl | php | py
var _QuickUploadLanguage = 'php' ; // asp | aspx | cfm | lasso | php
and set Enabled to true in the two files given below and it worked. Under linux the proper permissions on the folders where the images are uploaded.
include/FCKeditor/editor/filemanager/browser/default/connectors/php/config.php and
include/FCKeditor/editor/filemanager/upload/php/config.php
Code:
// SECURITY: You must explicitelly enable this "connector". (Set it to "true").
$Config['Enabled'] = true ;
Bookmarks