Quote Originally Posted by BeerBender View Post
Well I have read through most of this thread and havnt seen anything that has solved my issue.

I have installed image handler version 2.0 onto my 1.38a zen-cart store.

When I go to Admin/Tools/Image Handler/Preview

ALL 9 images are exactly the same size 642 X 362 no resizing what soever.

My GD info shows as follows

Code:
GD Support  enabled  
GD Version  bundled (2.0.28 compatible)  
FreeType Support  enabled  
FreeType Linkage  with freetype  
FreeType Version  2.2.1  
GIF Read Support  enabled  
GIF Create Support  enabled  
JPG Support  enabled  
PNG Support  enabled  
WBMP Support  enabled  
XBM Support  enabled
I tried editing my bmz_image_handler_conf.php to use 1 to force GD and that did not work either

Code:
<?php
/**
 * bmz_image_handler_conf.php
 * additional configuration entries for image handler
 *
 * @author  Tim Kroeger <[email protected]>
 * @copyright Copyright 2005-2006 breakmyzencart.com
 * @license http://www.gnu.org/licenses/gpl.txt GNU General Public License V2.0
 * @version $Id: bmz_image_handler_conf.php,v 1.6 2006/04/17 18:22:45 tim Exp $
 */

$ihConf['noresize_key']         = 'noresize';         //files which contain this string will not be resized
$ihConf['noresize_dirs']        = array('noresize', 'banners'); //images in directories with these names within the images directory will not be resized.
$ihConf['trans_threshold']      = '90%';              //this is where semitransparent pixels blend to transparent when rendering gifs with ImageMagick
$ihConf['im_convert']           = '';                 //if you want to use ImageMagick, you must specify the convert binary here (e.g. '/usr/bin/convert')
$ihConf['gdlib']                = 2;                  //the GDlib version (0, 1 or 2) 2 tries to autodetect
$ihConf['allow_mixed_case_ext'] = false;              //allow files with mixed case extensions like 'Jpeg'. This costs some time for every displayed image. It's better to just use lower case extensions
$ihConf['default']['bg']        = 'transparent 255:255:255';
$ihConf['default']['quality']   = 85;
Every aspect of IH works except the resizing. When I hover over an image it just shows the original size image I have uploaded. Obviously this is an issue.

I have reinstalled a few times, cleared cache and my bmz_cache folder is 777.

Help would be greatly appreciated.
A link helps us help you.