I have a CMSMS site that uses the Cataloger module to display item images and decriptions.
The web site was built at www.mydomain.com/cmsms/
After it was ready to go live I moved it to www.mydomain.com and all went fine except that none of the images in the Cataloger pages display. The description content is fine but on the vistor view the images are missing. On the admin view - admin panel > Content » Pages » Edit Page - Content Type Cataloger Item - Images tab The images show as the x box.
It seems the path to the images for the cataloger are not correct after the move?
Anyone have any ideas or advice?
Thanks for any help
Cataloger Images Dont Show After Move
Re: Cataloger Images Dont Show After Move
You don't have any problems with the other images or files in the uploads folder? Maybe your config file still refers to the document path being /cmsms/uploads/images. Your config.php should then off course be changed to /uploads/images.
If that isn't the case, at least we've established that it isn't a general setting.
If that isn't the case, at least we've established that it isn't a general setting.
Re: Cataloger Images Dont Show After Move
Hi Mantlet
Thanks for fast help response.
The old config file uploads settings were
#Where are uploaded files put? This defaults to uploads.
$config['uploads_path'] = '/home/name/public_html/cmsms/uploads';
#Where is the url to this uploads directory?
$config['uploads_url'] = $config['root_url'] . '/uploads';
The after the move settings are:
#Where are uploaded files put? This defaults to uploads.
$config['uploads_path'] = '/home/name/public_html/uploads';
#Where is the url to this uploads directory?
$config['uploads_url'] = $config['root_url'] . '/uploads';
Thanks for fast help response.
The old config file uploads settings were
#Where are uploaded files put? This defaults to uploads.
$config['uploads_path'] = '/home/name/public_html/cmsms/uploads';
#Where is the url to this uploads directory?
$config['uploads_url'] = $config['root_url'] . '/uploads';
The after the move settings are:
#Where are uploaded files put? This defaults to uploads.
$config['uploads_path'] = '/home/name/public_html/uploads';
#Where is the url to this uploads directory?
$config['uploads_url'] = $config['root_url'] . '/uploads';
Re: Cataloger Images Dont Show After Move
Ok, as far as I can see, that's pretty normal.
I quess someone with more skills in the cataloger code should give this one a go.
Cataloger is a little buggy in some things from time to time, maybe it gets it's image location once and stores that. However, I wouldn't know where to find that.
I quess someone with more skills in the cataloger code should give this one a go.
Cataloger is a little buggy in some things from time to time, maybe it gets it's image location once and stores that. However, I wouldn't know where to find that.
Re: Cataloger Images Dont Show After Move
I was thinking the same thing about the possibility of a stored image location.
Knowing that sometimes these things just need a little nudge, I deactivated the module then re activated it and also clicked on Update the Entire Catalog in Global Catalog Operations but still no images.
If anyone knows if the original image path is stored in the SQL database or has any thoughts on the fix for this it would be appreciated.
Thanks for your help Mantlet.
Knowing that sometimes these things just need a little nudge, I deactivated the module then re activated it and also clicked on Update the Entire Catalog in Global Catalog Operations but still no images.
If anyone knows if the original image path is stored in the SQL database or has any thoughts on the fix for this it would be appreciated.
Thanks for your help Mantlet.
Re: Cataloger Images Dont Show After Move
In old version, absolute image path is in SQL database. Check with phpmyadmin in content_props.content for pathparadox wrote: If anyone knows if the original image path is stored in the SQL database
Alby