Apologies for posting on this topic which has been wokred over but I'm unable to Upload Images using FCKeditor. I started with the latest version (2.2?) and have now started from scratch with v2.0
Filesystem
Drupal is located in the root of my site, not a subfolder
/files (777)
/files/images (777)
/files/flash (777)
/files/media (777)
I updated fckconfig.js by disabling the default ASP and setting like so (straight from the readme)
FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=/modules/fckeditor/ssip/connector.php"
FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=/modules/fckeditor/ssip/connector.php"
My properties.inc
*/
function _fck_connector_properties() {
$properties = array();
// The file system path separator (\) windows, (/) unix
$properties['path_separator'] = '/';
// The Context Path property represents a web application, which is run
// within a particular virtual host. If you specify a context path of an
// empty string (''), you are defining the default web application for
// this Host.
// $properties['context_path'] = '';
$properties['context_path'] = '';
// The default resource types list
$properties['resource_list'] = array('File', 'Image', 'Flash', 'Media');