I'm using FCKEditor with Drupal, and I'm having a problem with the location FCKEditor is looking for the image. Drupal is installed under a subdirectory (public_html/members), and I've configured the editor to use this path. I can upload image files to the correct location /public_html/members/files), but when the page is displayed, all that is displayed is the text for the alt attribute in teh <img> tag. I looked in the Apache error logs, and this is what is there:
[Thu Feb 14 22:04:26 2008] [error] [client 64.122.164.5] File does not exist: /home/campfire/public_html/404.shtml, referer: http://members.campusfiresafety.org/members/sites/all/modules/fckeditor/fckeditor/editor/fckeditor.html?InstanceName=oFCK_1&Toolbar=DrupalFull [Thu Feb 14 22:04:26 2008] [error] [client 64.122.164.5] File does not exist: /home/campfire/public_html/files/apache_pb22.png, referer: http://members.campusfiresafety.org/members/sites/all/modules/fckeditor/fckeditor/editor/fckeditor.html?InstanceName=oFCK_1&Toolbar=DrupalFull
So it looks to me like FCKEditor is looking in the wrong location. Is there another config file I need to change other than config.php?
Thanks.

Re: Page looking for image file in wrong location
$Config['Enabled'] = true ;
// Path to user files relative to the document root
$Config['UserFilesPath'] = '/members/' ;
'UserFilesPath' is the base (root) URL not the server path...
You need to reinsert the image to your document too as the path hardcoded during insert...
Hope this help. I am using FCKeditor v2.5.1 with Coldfusion 5.