Re: Image Handler 2 Support
Sorry if this has been answered...if so please give redirect.
I have IH2.0 loaded. I do not have lightbox loaded. I just load images as I load products and let IH2 do the large, etc.
My main page shows pic as you hover over it. How do I stop the image hover part? I want to keep the name of product.
Thanks, Kim
Re: Image Handler 2 Support
Try again I know someone can point me in the right direction...
Under Tools in the image handler section. Under Preview I see no images. Image handler appears to be working fine. IF I click on the boxes to read the property setting (yes on local right now) in gives me a dir of,
Code:
http://localhost/thequ003/store/thequ003/store/source/images/ih-test.gif
Notice it prints out /thequ003/store/thequ003/store/. If this would read single it would work. I have checked the admin configs, it is correct. Remember the cart works fine, all works fine so it appears just these images do not show. I am thinking it has something to do with being local settings but unsure. Would not like to put it live until I find a answer...
Please help...
Re: Image Handler 2 Support
Quote:
Originally Posted by
kburner
Sorry if this has been answered...if so please give redirect.
I have IH2.0 loaded. I do not have lightbox loaded. I just load images as I load products and let IH2 do the large, etc.
My main page shows pic as you hover over it. How do I stop the image hover part? I want to keep the name of product.
Thanks, Kim
What you want is not part of IH2's features. You would need to have this custom coded for you..
Re: Image Handler 2 Support
Quote:
Originally Posted by
bmccune
Try again I know someone can point me in the right direction...
Under Tools in the image handler section. Under Preview I see no images. Image handler appears to be working fine. IF I click on the boxes to read the property setting (yes on local right now) in gives me a dir of,
Code:
http://localhost/thequ003/store/thequ003/store/source/images/ih-test.gif
Notice it prints out /thequ003/store/thequ003/store/. If this would read single it would work. I have checked the admin configs, it is correct. Remember the cart works fine, all works fine so it appears just these images do not show. I am thinking it has something to do with being local settings but unsure. Would not like to put it live until I find a answer...
Please help...
Suggest you check your Zen Cart includes/configure.php file. The paths to your store may be incorrect..
Re: Image Handler 2 Support
I just installed Image Handler 2 (Zen-Cart 1.3.8a) and when I try to get into the Admin Configuration for this add-on, I get this:
"Sorry, your security clearance does not allow you to access this resource.
Please contact your site administrator if you believe this to be incorrect.
Sorry for any inconvenience"
Any suggestions on how to fix this?
John
Re: Image Handler 2 Support
Quote:
Originally Posted by
DivaVocals
Suggest you check your Zen Cart includes/configure.php file. The paths to your store may be incorrect..
Nope, checked, double checked and triple checked the admin and include configs are correct. Again the total zen cart ALL works fine, just those images in IH2 under admin do not show. IF you take out the doubles and put the dir in on here local they show so they are in then right place.. Again THIS IS LOCAL, not production......
Includes/config as follows:
Code:
define('HTTP_SERVER', 'http://localhost');
define('HTTPS_SERVER', 'https://thequestshop.secure.omnis.com');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'false');
// NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
// * DIR_WS_* = Webserver directories (virtual/URL)
// these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
define('DIR_WS_CATALOG', '/thequ003/store/');
define('DIR_WS_HTTPS_CATALOG', '/thequ003/store/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
define('DIR_WS_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
define('DIR_WS_TEMPLATES', DIR_WS_INCLUDES . 'templates/');
define('DIR_WS_PHPBB', '/');
// * DIR_FS_* = Filesystem directories (local/physical)
//the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
define('DIR_FS_CATALOG', 'C:/inetpub/wwwroot/thequ003/store/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
define('DIR_WS_UPLOADS', DIR_WS_IMAGES . 'uploads/');
define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_UPLOADS);
define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');
Admin config (dir changed):
Code:
define('HTTP_SERVER', 'http://localhost');
define('HTTPS_SERVER', 'https://thequestshop.secure.omnis.com');
define('HTTP_CATALOG_SERVER', 'http://localhost');
define('HTTPS_CATALOG_SERVER', 'https://thequestshop.secure.omnis.com');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'false');
define('ENABLE_SSL_ADMIN', 'false');
// NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
// * DIR_WS_* = Webserver directories (virtual/URL)
// these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
define('DIR_WS_ADMIN', '/thequ003/store/source/');
define('DIR_WS_CATALOG', '/thequ003/store/');
define('DIR_WS_HTTPS_ADMIN', '/thequ003/store/source/');
define('DIR_WS_HTTPS_CATALOG', '/thequ003/store/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_CATALOG_IMAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'images/');
define('DIR_WS_CATALOG_TEMPLATE', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/templates/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
define('DIR_WS_CATALOG_LANGUAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/languages/');
// * DIR_FS_* = Filesystem directories (local/physical)
//the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
define('DIR_FS_ADMIN', 'C:/inetpub/wwwroot/thequ003/store/source/');
define('DIR_FS_CATALOG', 'C:/inetpub/wwwroot/thequ003/store/');
define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
define('DIR_FS_CATALOG_TEMPLATES', DIR_FS_CATALOG . 'includes/templates/');
define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
large image error (my error not IH)
I've been using Image handler for a while and only recently noticed an install error. Everything works great with one exception. The large image on my product isn't resized by IH. The additional product images for the product are handled though as is every other image.
Can anyone point me to the locale for the code that handles the large product image?
Thanks
Tom
Re: Image Handler 2 Support
Try making the changes I outlined in red, and see if you don't get a different result..
Quote:
Originally Posted by
bmccune
Nope, checked, double checked and triple checked the admin and include configs are correct. Again the total zen cart ALL works fine, just those images in IH2 under admin do not show. IF you take out the doubles and put the dir in on here local they show so they are in then right place.. Again THIS IS LOCAL, not production......
Includes/config as follows:
Code:
define('HTTP_SERVER', 'http://localhost');
define('HTTPS_SERVER', 'https://thequestshop.secure.omnis.com');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'false');
// NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
// * DIR_WS_* = Webserver directories (virtual/URL)
// these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
define('DIR_WS_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
define('DIR_WS_TEMPLATES', DIR_WS_INCLUDES . 'templates/');
define('DIR_WS_PHPBB', '/');
// * DIR_FS_* = Filesystem directories (local/physical)
//the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
define('DIR_FS_CATALOG', 'C:/inetpub/wwwroot/thequ003/store/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
define('DIR_WS_UPLOADS', DIR_WS_IMAGES . 'uploads/');
define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_UPLOADS);
define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');
Admin config (dir changed):
Code:
define('HTTP_SERVER', 'http://localhost');
define('HTTPS_SERVER', 'https://thequestshop.secure.omnis.com');
define('HTTP_CATALOG_SERVER', 'http://localhost');
define('HTTPS_CATALOG_SERVER', 'https://thequestshop.secure.omnis.com');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'false');
define('ENABLE_SSL_ADMIN', 'false');
// NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
// * DIR_WS_* = Webserver directories (virtual/URL)
// these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
define('DIR_WS_ADMIN', '/source/');
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_ADMIN', '/source/');
define('DIR_WS_HTTPS_CATALOG', '/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_CATALOG_IMAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'images/');
define('DIR_WS_CATALOG_TEMPLATE', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/templates/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
define('DIR_WS_CATALOG_LANGUAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/languages/');
// * DIR_FS_* = Filesystem directories (local/physical)
//the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
define('DIR_FS_ADMIN', 'C:/inetpub/wwwroot/thequ003/store/source/');
define('DIR_FS_CATALOG', 'C:/inetpub/wwwroot/thequ003/store/');
define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
define('DIR_FS_CATALOG_TEMPLATES', DIR_FS_CATALOG . 'includes/templates/');
define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
Re: Image Handler 2 Support
Quote:
Originally Posted by
DivaVocals
Try making the changes I outlined in red, and see if you don't get a different result..
Made the changes exactly as you suggested..
Admin section went away 404 error
the site itself all images, css, went away...
has to have thequ003 in it. your suggestions took it out. Why, windows server I have 10 websites local on it (my own) if I take that out it does not know where to go.
As said this is local only so I am really unsure if it would do the same life (unix not windows) but on local again all works with the 1 EXCEPTION. When and only when I hover over a image the 3rd time. Yes the 3rd image I get a error, still works but I get:
Code:
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.30729; .NET CLR 1.1.4322)
Timestamp: Thu, 31 Dec 2009 01:06:47 UTC
Message: 'pageY' is null or not an object
Line: 124
Char: 7
Code: 0
URI: http://localhost/thequ003/store/includes/templates/questshop/jscript/jscript_imagehover.js
Again I stress it still works hover that is. If I go to any link error goes away until 3rd time no matter what.
I know different topic but just makes me wonder if all is somehow together as it appears to be a path concern. Hate to go live with it until I am sure it is windows or not...
Re: Image Handler 2 Support
I just installed IH and am having the same exact problem with my site. I'm running ZC 1.3.8a (with security patches) and the latest release of IH.
My hosting service just downgraded my php from 5.3 to 5.2.11, because of compatibility issues with 5.3. I'm going to have them drop back to 5.2.9, if they can, and see if IH works correctly.
John Rayfield, Jr.
www.rayfield.net
Quote:
Originally Posted by
Asdesign
Yes of course.
IH working server is version: 5.2.6.
IH not working server is version: 5.2.10.
I'm trying to compare PHP parameters from both servers to see if maybe one parameter on the NOT working server has it disabled.