Re: Image Handler 5 (for v1.5.5) Support Thread
oh you are so very close there McNumbers.
I suspect that their configure.php had
Code:
/**
* Enter the domain for your store
* HTTP_SERVER is your Main webserver: eg-http://www.yourdomain.com
* HTTPS_SERVER is your Secure/SSL webserver: eg-https://www.yourdomain.com
*/
define('HTTP_SERVER', 'http://localhost/shop/');
define('HTTPS_SERVER', 'https://localhost/shop/');
and
Code:
/**
* These DIR_WS_xxxx values refer to the name of any subdirectory in which your store is located.
* These values get added to the HTTP_CATALOG_SERVER and HTTPS_CATALOG_SERVER values to form the complete URLs to your storefront.
* They should always start and end with a slash ... ie: '/' or '/foldername/'
*/
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
When it should be
Code:
/**
* Enter the domain for your store
* HTTP_SERVER is your Main webserver: eg-http://www.yourdomain.com
* HTTPS_SERVER is your Secure/SSL webserver: eg-https://www.yourdomain.com
*/
define('HTTP_SERVER', 'http://localhost');
define('HTTPS_SERVER', 'https://localhost');
and
Code:
/**
* These DIR_WS_xxxx values refer to the name of any subdirectory in which your store is located.
* These values get added to the HTTP_CATALOG_SERVER and HTTPS_CATALOG_SERVER values to form the complete URLs to your storefront.
* They should always start and end with a slash ... ie: '/' or '/foldername/'
*/
define('DIR_WS_CATALOG', '/shop/');
define('DIR_WS_HTTPS_CATALOG', '/shop/');
Re: Image Handler 5 (for v1.5.5) Support Thread
Quote:
Originally Posted by
barco57
oh you are so very close there McNumbers.
I suspect that their configure.php had
Code:
/**
* Enter the domain for your store
* HTTP_SERVER is your Main webserver: eg-http://www.yourdomain.com
* HTTPS_SERVER is your Secure/SSL webserver: eg-https://www.yourdomain.com
*/
define('HTTP_SERVER', 'http://localhost/shop/');
define('HTTPS_SERVER', 'https://localhost/shop/');
and
Code:
/**
* These DIR_WS_xxxx values refer to the name of any subdirectory in which your store is located.
* These values get added to the HTTP_CATALOG_SERVER and HTTPS_CATALOG_SERVER values to form the complete URLs to your storefront.
* They should always start and end with a slash ... ie: '/' or '/foldername/'
*/
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
When it should be
Code:
/**
* Enter the domain for your store
* HTTP_SERVER is your Main webserver: eg-http://www.yourdomain.com
* HTTPS_SERVER is your Secure/SSL webserver: eg-https://www.yourdomain.com
*/
define('HTTP_SERVER', 'http://localhost');
define('HTTPS_SERVER', 'https://localhost');
and
Code:
/**
* These DIR_WS_xxxx values refer to the name of any subdirectory in which your store is located.
* These values get added to the HTTP_CATALOG_SERVER and HTTPS_CATALOG_SERVER values to form the complete URLs to your storefront.
* They should always start and end with a slash ... ie: '/' or '/foldername/'
*/
define('DIR_WS_CATALOG', '/shop/');
define('DIR_WS_HTTPS_CATALOG', '/shop/');
I would agree that for a base install that is the way it should read; however, there have been some "exceptions" and reasons to place the folder name in the HTTP_SERVER/HTTPS_SERVER areas. Regardless as I stated, the expectation is that those constants do not include an ending slash and the DIR_WS_CATALOG related constants do end with one.
Re: Image Handler 5 (for v1.5.5) Support Thread
Anyone having an issue with image popup on hover in Safari under MacOS Mojave? It works great in Chrome, Firefox, Seamonkey and IE.
https://technomonkeys.com/Store/
Re: Image Handler 5 (for v1.5.5) Support Thread
Quote:
Originally Posted by
IATIA
Anyone having an issue with image popup on hover in Safari under MacOS Mojave? It works great in Chrome, Firefox, Seamonkey and IE.
https://technomonkeys.com/Store/
Works fine for me with Safari 12.0.2 on Mojave.
Re: Image Handler 5 (for v1.5.5) Support Thread
Thanks for your input. Must be something at my end. I flushed everything from Safari, but still no popups.
Mojave 10,14.3 Beta - Safari 12.0.3
Re: Image Handler 5 (for v1.5.5) Support Thread
Well, I went back to Zen-Cart 1.5.5f and the problem is gone.
Re: Image Handler 5 (for v1.5.5) Support Thread
Quote:
Originally Posted by
DrByte
Works fine for me with Safari 12.0.2 on Mojave.
I'm on Safari 12.0.3 and Mojave 10.14.3. I am going to play around with my backup. If I find anything useful to the group, I will update all.
Operating System linux (Hostmatters)
Apache 2.4.37
PHP 7.1.25
MySQL 5.6.41
ZenCart v1.5.5f
About_us page
dbio 1.5.1
MainImageReplacer-v1.0 (modified extensively)
Image_Handler5.1.1
Local OS Mojave 10.14.3b
PHP 7.1.23
Apache 2.4.34
MySql 8.0.13
Re: Image Handler 5 (for v1.5.5) Support Thread
hey,
i'm playing around a bit with some things on v156.....
with php7.2 now logging warnings for undefined constants, i have come across a curious one.... at least for me....
there are 2 constants:
LARGE_IMAGE_HEIGHT
LARGE_IMAGE_WIDTH
that i cannot see where they may have been defined.
they are not in any of my configuration tables, nor can i find them defined in any php file.
yet they are referred to in this image handler plugin as well as the lightbox plugin.
mistake? or am i missing a config value?
thanks in advance.
Re: Image Handler 5 (for v1.5.5) Support Thread
Quote:
Originally Posted by
carlwhat
hey,
i'm playing around a bit with some things on v156.....
with php7.2 now logging warnings for undefined constants, i have come across a curious one.... at least for me....
there are 2 constants:
LARGE_IMAGE_HEIGHT
LARGE_IMAGE_WIDTH
that i cannot see where they may have been defined.
they are not in any of my configuration tables, nor can i find them defined in any php file.
yet they are referred to in this image handler plugin as well as the lightbox plugin.
mistake? or am i missing a config value?
thanks in advance.
Well, :censored:. For as long as I've been the maintainer of IH, I thought that those were built-in Configuration->Images settings.
I've opened this GitHub issue to track the associated change.
Re: Image Handler 5 (for v1.5.5) Support Thread
@lat9 apparently others think these configs exist as well. see:
https://github.com/zencart/zencart/s...E_IMAGE_HEIGHT