Hi all!
I have serius problems with fckeditor. I've tried everything but nothing seems to work.
My drupal installation is in the root.
I've installed and activate the module.
I modified fckconfig.js with FCKConfig.LinkBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Image&Connector=/modules/fckeditor/ssip/connector.php'
and
FCKConfig.ImageBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Image&Connector=/modules/fckeditor/ssip/connector.php' ;
I modified the properties.inc file as follow:
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');
// resource type paths (absolute path under the context_path)
// These directories must exists in the current file system and have
// read and write permissions
$properties['File'] = '/files';
$properties['Image'] = '/files/images';