Hello everybody,
I am having the same problem that had gruntre69. ( http://www.zen-cart.com/showthread.p...-Thread/page7)
gruntre69 say that solved the problem with rolled back version of Nicol. Could someone help me too with this please ?
thank you
Hello everybody,
I am having the same problem that had gruntre69. ( http://www.zen-cart.com/showthread.p...-Thread/page7)
gruntre69 say that solved the problem with rolled back version of Nicol. Could someone help me too with this please ?
thank you
Hi all,
I'm having a problem with the watermarks appearing on the medium and large images. The files are there and they are set to yes in the admin but they just don't show. I last had a version of 1.3.9 installed with ih2, all worked as it should so I don't know what i'm doing wrong. Details Below:
Zencart v1.5.1 fresh install - no ih2 settings was a clean db
MySQL 5.1.65-cll
PHP 5.3.13
GD Enabled - bundled 2.0.34
imageMagik Enabled - 6.5.4-7
Other Addons: Invoice/Worldpay/Google Merchant Feeder
BMZ_Cache & Images folders+files all set to CHMOD 755
Followed the advanced instructions in the readme, got a success message in admin.
No Lightboxes
Admin settings:
Product Info - Image Medium Suffix _MED
Product Info - Image Large Suffix _LRG
IH resize images no
IH small images filetype no_change
IH small images background 255:255:255
IH small images compression quality 85
IH small images watermark no
IH small images zoom on hover no
IH small images zoom on hover size Medium
IH medium images filetype no_change
IH medium images background 255:255:255
IH medium images compression quality 85
IH medium images watermark yes
IH large images filetype no_change
IH large images background 255:255:255
IH large images compression quality 85
IH large images watermark yes
IH large images maximum width 750
IH large images maximum height 550
IH watermark gravity Center
Example URL:
http://www.lighthouse.uk.com/shop/in...roducts_id=249
Everything else seems to work pretty much picture perfect. Even under the 'preview' tab in the admin settings the watermark is there.
Thanks in advance for any pointers!
I've read the 39page thread,No answered for this question.
Zencart 1.5.1 english version, MySQL 5.0.96, php:5.3.8 (Zend: 2.3.0) ,Self-built template
After my uploading the Image Handler 4 to my host, I can't get into my admn page,it shows the error message:
Code:WARNING: An Error occurred, please refresh the page and try again. Fatal error: 1064:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' 1001, now(), now(), NULL, 'zen_cfg_select_option(array(''yes'',''no''),')' at line 1 :: INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES (NULL, 'IH resize images', 'IH_RESIZE', 'no', 'Select either -no- which is old Zen-Cart behaviour or -yes- to activate automatic resizing and caching of images. --Note: If you select -no-, all of the Image Handler specific image settings will be unavailable including: image filetype selection, background colors, compression, image hover, and watermarking-- If you want to use ImageMagick you have to specify the location of the convert binary in includes/extra_configures/bmz_image_handler_conf.php.', , 1001, now(), now(), NULL, 'zen_cfg_select_option(array(''yes'',''no''),') in /home/easyoutl/public_html/includes/classes/db/mysql/query_factory.php on line 121
problem solved!
admin/includes/init_includes/init_image_handler.php
Replace
withCode:$sql = "SELECT configuration_group_id FROM ".TABLE_CONFIGURATION_GROUP." WHERE configuration_group_title='".BOX_CONFIGURATION_IMAGES."' LIMIT 1"; $result = $db->Execute($sql); $im_configuration_id = $result->fields['configuration_group_id'];
Code:$sql = "SELECT configuration_group_id FROM ".TABLE_CONFIGURATION_GROUP." WHERE configuration_group_title='Images' LIMIT 1"; $result = $db->Execute($sql); $im_configuration_id = $result->fields['configuration_group_id']; if($im_configuration_id == '') $im_configuration_id = 4;
My Site - Zen Cart & WordPress integration specialist
I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.
Finally figured this out by reading the resize images description in admin. In IH2 (where I was comparing settings) resize could be set to off whilst watermarking still worked. Whereas in IH4 nothing works unless this setting is on. Is there any point installing this mod with this setting off?
Great mod, sorry if my question seemed a bit stupid. Feeling a little silly now for asking it![]()
My Site - Zen Cart & WordPress integration specialist
I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.
I had the same problem as many others with images not uploading to the server and of course not displaying in the store. But finally tracked the problem down. My host changed the document root path to my site and it wrecked havoc on the images. So with the new path I inserted into both configure.php files and all is back to normal. Hope this helps someone.