I've searched all over the forum - seen dozens upon dozens of posts related to thumbnail issues, but nothing that has solved my problem - which is like most people - the thumbnails do not show (but clicking the red X in IE - the image does show).
Website is:
www.chezchamar.com
(using the plugin in the Lamps link)
In my Joomla, I set my media & images root folder to just "images" (whereas it was /images/stories/)
In the jwsig.php file, I set the $rootfolder = '/images/'; to /images/ (it was defaulted to /images/stories)
In the showthumb.php file, what was:
$_image_ = '../../../images/stories'.$_GET;
Is now:
$_image_ = '../../../images/'.$_GET;
If I look at the properties on the red X, I see:
Warning: getimagesize(../../../images/Lamps/Lamps-) [function.getimagesize]: failed to open stream: No such file or directory in /home/content/67/7121167/html/plugins/content/plugin_jw_sig/showthumb.php on line 43
The three ../ is going backwards three directories to the root (/) then to /images/Lamps - and I have this directory (/images/Lamps) with images in there
Why that message says "no such file or directory" - beyond me. The dir does exist and everything says my thumbnails should display - but they don't.
What am I missing here?