The path should be something like:
Code: Select all
www.site.com/uploads/images/catalog/image.jpg
Code: Select all
www.site.com/modules/Cataloger/uploads/images/catalog/image.jpg
Cataloger: 0.11.3
CMSMS: 1.11.4
Code: Select all
www.site.com/uploads/images/catalog/image.jpg
Code: Select all
www.site.com/modules/Cataloger/uploads/images/catalog/image.jpg
It will be fixed in next release. For the moment the workaround is, as stated, to set explicitly both config vars in config.php.bug report [#8579] wrote:The $config['root_url'] and $config['uploads_url'] that are reported in Catalog.Image.php are incorrect unless they are stated explicitly in config.php (which they are not by default in newer versions of CMSMS).
Code: Select all
$config['root_url'] = '<your_root_url>';
$config['uploads_url'] = '<your_uploads_url>';
Thanks alot, it workedJo Morg wrote:Just add the correct entries to your config.php file:Replace the <your_root_url> and <your_uploads_url> with the pertinent values for your site.Code: Select all
$config['root_url'] = '<your_root_url>'; $config['uploads_url'] = '<your_uploads_url>';
Yep that's right, I added it soon after I submitted that last post.Jo Morg wrote:You may also need t set the uploads_path on the config.php...
Not sure...