Oh, yea......I forgot to give ZC & IH versions on this little 'bug'.
Zen-Cart version: 1.3.9d
Image Handler version: 2.0 Rev 8b
Oh, yea......I forgot to give ZC & IH versions on this little 'bug'.
Zen-Cart version: 1.3.9d
Image Handler version: 2.0 Rev 8b
Teach them to shop and they will shop today;
Teach them to Zen and they will OWN a shop tomorrow!
1.38a with Zen lightbox too.
Finally got around to installing this and wish I had sooner.
Working just great but in Admin I don't see all the options. In particular the image hotzone & hotzone gravity controls but also the image filetypes.
Here's what I see with 2.0 Rev 8b :
IH resize images
IH small image filetype
IH small image background
IH watermark small images
IH zoom small images
IH small image compression quality
IH medium image filetype
IH medium image background
IH watermark medium images
IH medium image compression quality
IH large image filetype
IH large image background
IH watermark large images
IH large image compression quality
IH large image maximum width
IH large image maximum height
IH watermark gravity
I've checked the files again and everything seems to uploaded. Have it on two sites with same Admin issue.
Not a super big deal as things are working including the default zoom on small images but I would like to have the controls and maybe tweak them. I don't see the mentioned overlay which is good but thought I should mention that too.
Duh! Sorry, though I read it and lots of stuff here I must have missed the change section and made assumptions based on other postings.
I thought you could modify/switch the hoover which started the whole question. It's fine as is.
Teaches me for adding on a whim at 5am!
Thanks for the quick response, sounds like all is well with my setup.
Are you sure you are using IH r8b, as just from checking you have the javascript from version IH 7, not that that should make a difference to your problem, have you tested just the base install of image handler without lightbox added, as the code seems to be a shade odd
Nope it seems to be happening to me to
http://nigel.geek.nz/sbo_shop/index....oducts_id=4285
There is a known bug with additional images, although as i don't use extra images i haven't paid much attention to it
was mentioned around 40 - 50 posts back
http://www.zen-cart.com/forum/showpo...postcount=5705
Last edited by nigelt74; 10 Sep 2010 at 03:14 AM.
nigelt, Oops........you were right about one thing......the IH version. I installed this a couple of months ago on this site, and didn't realize it was updated since then.......my bad! I've been soooo busy lately...........I have since updated IH on this site, but yea......it's still doing the same thing.
It's not really a 'biggie' with this particular client, as he says. But, I still think it's a bug that needs 'squashed' because one of these days a client's going to say...."you say you guarantee 100% satisfaction, yet I can't even put an apostrophe in my product names and have them hover!?".....you know what I mean?
Thanks for the responses, though, and I'll keep trying to help find it, too.......it's probably one of those little things like a double quote where it should be single, or a bracket where it should be a parentheses or some little thing like that, that's going to take forever to track down.....you know how that goes, too?
Thanks,
Robert
Teach them to shop and they will shop today;
Teach them to Zen and they will OWN a shop tomorrow!
There is a hack you can use, for some bizarre reason its the only thing i can get to work
this is a hack, there is probably a better way to do this, BUT
in this file
includes/classes/bmz_image_handler.class.php
around line 690
add the following directly underneath (cut and paste it), basically it replaces any single quote apostrophe with a single fancy quote//escape possible quotes if they're not already escapped
$alt = preg_replace("/([^\\\\])'/", '$1\\\'', $alt);
$alt = str_replace('"', '"', $alt);
as always use at your own risk, i have tested it on my site and it seems to work fine//replace apostrophe with fancy quote
$alt = str_replace("'", "‘", $alt);
It isn't the most elegant, however this is a weird bug, all the apostrophes in the javascript code are being escaped, but only on the additional images bit, and i can't find the cause
and before you say it, i did try changing ' to ' but it didn't work
Last edited by nigelt74; 11 Sep 2010 at 04:37 AM.
Still using IH2 Ver2-0rev7 on ZC 1.3.8a and have been bugged by this for some time.
Looking at my additional_images.php file, it shows that I have the suggested fix, but I'm still having the additional image issue.
What is the function difference between the line that's commented out and the line that's being used?
Thanks,PHP Code:
// if(preg_match("/" . $products_image_match . "/i", $file) == '1') {
if(preg_match("/" . $products_image_base . "/i", $file) == '1') {
Stephen
nigelt..........Thanks for the 'quick-fix hack'. It seems to be working perfectly!
There may be a better way, but if it works.........................
Teach them to shop and they will shop today;
Teach them to Zen and they will OWN a shop tomorrow!
Bookmarks