Re: Image Handler 2 Support
I've installed IH2 succesfully and can access the IH2 panel in admin, but somehting is not working right.
WHen I add a new image, everything sems to work fine but the image never actually gets resized. When I view the product in the store, the image is simply shrunk down using the IMG width and height. It uses the same large image for each instance.
The image icons for the product show up fine in the IH2 admin panel and are resized properly, but it never seems to work in the actual storefront.
I have GD 2.0.28 enabled and have used it successfullly elsewhere. Does anyone have any idea what might be going on?
I also do not see the "I" icon next to my products when I'm in the Categories/Products panel.
Re: Image Handler 2 Support
Hello there,
I have only encountered this recently. It only seems to affect when I upload new jpegs. The previous items are working fully.
What happens is that the small and medium image display, but when I go to the product info page, the image is gone, and the resize won't display the image. As in the link below:-
I don't know what is stopping this work on that particular page, when the rest are working. But only with items that I upload currently.
Any help is greatly appreciated.
Thankyou in advance.
Image Handler 2 Support - Zooming Problem
Maybe I missed this in a previous post but here it goes.
The problem is that the zoom effect doesn't work right. When you hover hover a small image the entire website shifts down the page and the image is displayed at the top instead of next to the cursor.
I upgraded to zencart 1.3.0.2 which had a previous version of the image handler already installed which might have been the 1.0 beta 2. I deleted the 2 old files from extra_functions to get the website to work.
I currently have the zoom turned off and everything else seems to work fine. There's something about the previous version of the image handler that is affecting the zoom effect and i haven't been able to track it down so far.
Re: Image Handler 2 Support
Currently I already have images resized for small medium and large but I want to only keep the large out there from now on. I also want the watermark to display.
For some reason, if the small medium and large files are all there the watermark works. If I only have the large out there and the image handler resizes it (which it is resizing perfectly) then the watermark only works on the small images. Anyone know why?
Re: Image Handler 2 Support
Quote:
Originally Posted by kiwi-licious
Hello,
I'm running ZC 1.3.0.1 and IH 2.0. Everything installed and worked great when I first tested it. Now when I go to add an image, it uploads fine and I get an "image successfully saved" message at the top of the page, but at the bottom it says:
and the image doesn't show up on the IH page, or the product info page. This only happens when adding images to some products, not all.
The only thing I have tried is enabling SSL (which I needed to do anyway). I'm feeling pretty clueless about this one, any help would be greatly appreciated!
In case anyone is wondering, the root of the problem was the default image contained brackets in the file name. Removing the brackets and reuploading the default image solved the problem. :)
Re: Image Handler 2 Support
Hi,
I am running ZC 1.3, and recently installed IH 2.0, but I am unable to find the IH settings in my Manager-->Tools
Any one knows what is going on?
Kind regards,
Goshawk
Re: Image Handler 2 Support
The settings are under Configuration/Images
Re: Image Handler 2 Support
Thanks for your reply Patski,
Goshawk
Re: Image Handler 2 doesn´t work!!!
desperately seeking help!!!
i have zen cart 1.3.0.2 and i have reinstalled IH2 because the images doesn't work fine but my IH2 shows as follow when it starts --->tools-imagehandler2

Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/calivent/public_html/caliventas/admin/image_handler.php:1) in /home/calivent/public_html/caliventas/includes/functions/sessions.php on line 100
Warning: Cannot modify header information - headers already sent by (output started at /home/calivent/public_html/caliventas/admin/image_handler.php:1) in /home/calivent/public_html/caliventas/admin/includes/init_includes/init_templates.php on line 36
what's going on here???
thanks for anyone can help me!!!
:down:
Re: Image Handler 2 Support
I hope this helps someone...
I was getting a "fatal libpng error: zlib error in bmz_image_handler.class.php on line 646" in my httpd error log.
In PHP 5.1, the compression factor should be 0 to 9. I fixed the problem by changing the compression factor.
This only affects PHP 5.1 and later, so check your php version in admin -> tools -> Server/Version Info
file: /includes/classes/bmz_image_handler.class.php
Line 646:
change
$ok = imagepng($image, $dest_name, $quality);
to
$ok = imagepng($image, $dest_name, 9);
good luck!