Zen Cart Logo
Forums / All Other Contributions/Addons / Image Handler 2 (for ZC v1.3.8 ONLY) Support

Image Handler 2 (for ZC v1.3.8 ONLY) Support

Views: 2,510,642

Results 1,121 to 1,140 of 7,094
15 Apr 2007, 2:19 AM
#1121
justwade avatar

justwade

Zen Follower

Join Date:
Oct 2005
Posts:
206
Plugin Contributions:
0

Image Handler 2 (for ZC v1.3.8 ONLY) Support

Ryk:

Just a note for when people refer to "about page 100 in the thread" - you can change the number of posts displayed to you through your UserCP, so it would be helpful to say what posts per page you are viewing yourself.

I agree, it may also be helpful to say "about post 100 (or whatever) in the thread" so we dont have to think about reseting our UserCP to search the area just because our math abiltiy is kind of fading away.

15 Apr 2007, 5:05 PM
#1122
red8ii8 avatar

red8ii8

New Zenner

Join Date:
Feb 2007
Posts:
38
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

What am I missing? Every so often I get all these number images as additional images for a product with only one image. How do I prevent this from happening? Not all my products will have the same number of images and deleting them one by one is time consuming.

Thanks!

19 Apr 2007, 3:39 AM
#1123
stenrique avatar

stenrique

Zen Follower

Join Date:
Apr 2005
Posts:
355
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

Please correct me if I am mistaken. Read somewhere that stating the image height and width attributes (i.e. the img tag) would help browser to "process" images faster.

If that is true, perhaps IH2 can be tweaked to automatically add the height and width attributes since it already has fields in the Admin for specifying these info. for Small, Medium, and Large images?

I'm a PHP-newbie with an idea. Any advice and/or taker? Thank you.

20 Apr 2007, 4:37 PM
#1124
digidiva_kathy avatar

digidiva_kathy

Zen Follower

Join Date:
May 2006
Posts:
323
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

For some reason, the IH2 is making all sizes 500 x 500, even though I have different sizes set in the admin. I installed it, then installed a product info display mod which may have messed it up, but I can't figure out how. I am pretty sure I've deleted all the files from that template mod and replaced the ones it would have changed, but I still am seeing only 500 x 500 sizes when I look at the image in the image handler.

Help?

Thanks!

20 Apr 2007, 7:18 PM
#1125
digidiva_kathy avatar

digidiva_kathy

Zen Follower

Join Date:
May 2006
Posts:
323
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

Okay, I FINALLY deleted every file and folder of the original install, reuploaded them and installed again and it works. One question, though...I want an additional image on the product info page to display at full size. Right now, it's showing up as the small size with the hover and large image options working. Can I make it default to the large size there?

Thanks!

20 Apr 2007, 8:38 PM
#1126
digidiva_kathy avatar

digidiva_kathy

Zen Follower

Join Date:
May 2006
Posts:
323
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

Okay, I'VE HAD IT! It was working fine, I didn't do a darn thing and now it's stopped again and is setting all sizes of the images to 500 x 500 (the size of the original). I don't understand. You can see there are two images on the front page that are working correctly, but none of the others are. PLEASE help before I scrap this install of the store and start all over :( .

http://www.kaymillerdesigns.com/shoppe

20 Apr 2007, 8:56 PM
#1127
digidiva_kathy avatar

digidiva_kathy

Zen Follower

Join Date:
May 2006
Posts:
323
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

Um, please forgive me, we found out the hard way that we can't use images with the _LRG at the end for the default. That's what our problem was, apparently. Sorry for all the posts.

21 Apr 2007, 3:05 AM
#1128
birdoasis avatar

birdoasis

Inactive

Join Date:
Jun 2005
Location:
Cheney WA
Posts:
1,123
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

You are forgiven, as long as you forgive the rest of us for loosing our patience with so many tools in a small toolbox.

21 Apr 2007, 3:09 AM
#1129
birdoasis avatar

birdoasis

Inactive

Join Date:
Jun 2005
Location:
Cheney WA
Posts:
1,123
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

Stenrique,

It's true that stating the size is best, however working with so many different image sources, personal choices, and people it would be hard to set the three sizes with a standard.

You can tweak it if you like. You just have to explore the javascript and change the percentages to size. At least that's my guess.

JP

21 Apr 2007, 6:19 AM
#1130
zhangfei avatar

zhangfei

New Zenner

Join Date:
Apr 2007
Location:
Portland, OR
Posts:
6
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) 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!

This thread is long, but I found it. I'm running ZC with IH2 locally on XAMPP and encountered this error. Editing that file does the trick. Thanks!

22 Apr 2007, 2:45 AM
#1131
digidiva_kathy avatar

digidiva_kathy

Zen Follower

Join Date:
May 2006
Posts:
323
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

digidiva-kathy:

One question, though...I want an additional image on the product info page to display at full size. Right now, it's showing up as the small size with the hover and large image options working. Can I make it default to the large size there?

Thanks!

Can anyone answer this one for me?

22 Apr 2007, 10:31 AM
#1132
ryk avatar

ryk

Totally Zenned

Join Date:
Oct 2004
Location:
Southport, UK
Posts:
3,644
Plugin Contributions:
6

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

Edit includes/modules/additional_images.php (lines 88 & 89 from original) and save to includes/modules/YOUR_TEMPLATE/additional_images.php

23 Apr 2007, 11:35 AM
#1133
tasmania avatar

tasmania

New Zenner

Join Date:
Jun 2005
Posts:
10
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

Hello,

Again I have a problem with IH2. Briefly when i upload my site to hosting server IH2 gives the fatal error. In local I use PHP Version 4.3.10 but the hosting company use PHP v5.1.2. I think the different versions of PHP causing the error below.

Fatal error: Call to undefined method ih_image::resize_imageIM() in /srv/www/vhosts/modastok.com/httpdocs/yeni3/includes/classes/bmz_image_handler.class.php on line 262

Notice: Object of class queryFactoryResult could not be converted to int in Unknown on line 0

Can anybody have a solution for this error,

Thanks from now.

23 Apr 2007, 12:47 PM
#1134
zinfandel avatar

zinfandel

Zen Follower

Join Date:
Feb 2007
Location:
NNJ
Posts:
205
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

Forgive me for asking this but I tried searching and failed.

I noticed that on some sites the IH2 works so that the zoomed image is displayed with varying directionality in relation to the cursor based on where the cursor is within the viewable screen.

If there isn't enough room to open the zoomed image to the south east of the cursor, it opens to the north east, or it will open to the west if there isn't enough room on the east side.

My IH2 isn't that smart.

Did I miss a post or two on how to correct this?

Please, I'm a perfectionist, and I can't stand it when it doesn't work right. It's killing meeeeeeeeeeeeeeee.

~zin

25 Apr 2007, 2:12 AM
#1135
jeffey avatar

jeffey

Zen Follower

Join Date:
Aug 2006
Posts:
252
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

O.K., so I was pushed to install Image Handler 2 and now I don't really get it.

I already had Lightbox installed along with basic images for products but not like ones in Medium or Large folders. Lightbox used the basic image to enlarge on the product page just fine.

I did run into a small issue with the very small handful of items that had additional pictures and did add simple copies of the basic images, adding _LRG, and Lightbox worked just fine with the few products with multiple images.

IH2 is in and seems to functioning but what am I missing?

Seems like it is nice for browsing items but I don't really have a big use for that function. It can also load them but I FTP as products are added so can't find a use for that.

It's gotta be me since I see in threads people worrying about Lightbox and IH working well together.

Both great adds but why do I need both?

Thanks!

25 Apr 2007, 2:52 AM
#1136
jeffey avatar

jeffey

Zen Follower

Join Date:
Aug 2006
Posts:
252
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

By the way and regarding my last post, my pictures are jpegs.

26 Apr 2007, 12:18 AM
#1137
kdgjevre avatar

kdgjevre

New Zenner

Join Date:
Jun 2006
Posts:
56
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

Here is my site:

http://www.alldigitaldesigns.com/zencart/

Hover over any picture and you will see I get an empty floating picture. I have read the doc, installed twice. What am I missing:huh:

Thank you.

26 Apr 2007, 12:58 AM
#1138
tvadpro avatar

tvadpro

Zen Follower

Join Date:
Aug 2005
Location:
Cincinnati
Posts:
323
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

I don't know why, but the url for the hover image has what appears to be an extra slash, e.g.```html
onmouseover="showtrail('images//soccer.jpg','Plaque - Ball Shape',150,150,400,400,this,0,0,150,150);"


Fix the problem with the assembly of the hover image url, and you should be in good shape.> **kdgjevre:**
>
> Hover over any picture and you will see I get an empty floating picture.  I have read the doc, installed twice.  What am I missing:huh:
26 Apr 2007, 1:44 AM
#1139
kdgjevre avatar

kdgjevre

New Zenner

Join Date:
Jun 2006
Posts:
56
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

Any chance you could translate that for me?

Assemble the what?????

Is this a every picture fix or one place?

thank you

26 Apr 2007, 3:10 PM
#1140
kdgjevre avatar

kdgjevre

New Zenner

Join Date:
Jun 2006
Posts:
56
Plugin Contributions:
0

Re: Image Handler 2 (for ZC v1.3.8 ONLY) Support

kdgjevre;364575]Any chance you could translate that for me?

Assemble the what?????

Is this a every picture fix or one place?

Where is this HTML code and is there one place in the setup if IH2 that I can fix.

thank you