Hello.
I'm having the same problem here: Images in /uploads/img don't display. Some days ago I sent a post about what I thought it was some CSS related problem with Image Manager module (I'm a novice

). However, I'm unable to get -both included in content or in the Image Manager- any new images I have uploaded. In Image Manager there are links to the stored images and the path looks as correct, but it returns a 403 error from Apache. However, it doesn't seem a permission problem but a path-related one.
I'm using 1.2.2 and both /uploads and /uploads/images have 777 permissions. Looking at the Apache error logs it seems there is a problem building the adequate path, because it's looking for /usr/local/uploads, but it should be looking for /usr/local/www/cms/uploads instead:
[Mon Dec 24 17:44:12 2007] [error] [client xxx.xxx.xxx.xxx] client denied by server configuration: /usr/local/uploads, referer:
http://my.own.server/lib/filemanager/Im ... s.php?dir=
That is, it looks as images.php is losing in some way the base path, or replacing it with '/usr/local'. From there, I pressumed there was some configuration problem, but as far as I know, all path related settings are fine:
$config['root_url'] = '
http://my.own.server';
$config['root_path'] = '/usr/local/www/cms';
$config['previews_path'] = '/usr/local/www/cms/tmp/cache';
$config['uploads_path'] = '/usr/local/www/cms/uploads';
$config['uploads_url'] = $config['root_url'] . '/uploads';
$config['image_uploads_path'] = '/usr/local/www/cms/uploads/images';
$config['image_uploads_url'] = $config['root_url'] . '/uploads/images';
I have mod_rewrite enabled ($config['assume_mod_rewrite'] = true;) . Each time I attempt to get an image the Apache log shows a lot of rewrite warnings as the following ones:
[Mon Dec 24 18:03:16 2007] [warn] RewriteCond: NoCase option for non-regex pattern '-f' is not supported and will be ignored.
[Mon Dec 24 18:03:16 2007] [warn] RewriteCond: NoCase option for non-regex pattern '-d' is not supported and will be ignored.
However, deactivating mod_rewrite and removing .htaccess files don't make any change about the image problem. Activating debug doesn't help, too: it shows only db related steps, but no path errors.
My setup: Apache 2.2.6, PHP 5.2.5, GD 2.0.35, PostgreSQL 8.1.10, FreeBSD 6.2
Any help?
Regards,
NK.