Hi, unfortunately Im having a problem with our SSL certificate and Zen Cart.
We already have a live store and a working SSL cert here; www.crushcosmetics.com.au
Im currently moving our store over to zen cart, ive been developing it in a sub-directory here; http://www.crushcosmetics.com.au/sTor3/
The problem is, when I enable SSL in the config files, Im getting errors about the images not being secure.
Im not using absolute links, the image paths are; images/ or; ../images
The kicker is, there's a Paypal image being piped in by this link; https://www.paypal.com/en_US/i/btn/b...ssCheckout.gif - and even THAT is being reported as insecure.
Here's the code to my config files;
includes;
admin/includes;PHP Code:define('HTTP_SERVER', 'http://www.crushcosmetics.com.au');
define('HTTPS_SERVER', 'https://www.crushcosmetics.com.au');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
// 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', '/sTor3/');
define('DIR_WS_HTTPS_CATALOG', '/sTor3/');
My ISP informs me that the SSL cert is our own and is not shared. He suggested hardcoding all image links to include https but that seems rather clunky. (I also wonder if having all images in https would be a performance hit?)PHP Code:* If you desire your *entire* admin to be SSL-protected, make sure you use a "https:" URL for all 4 of the following:
*/
define('HTTP_SERVER', 'https://www.crushcosmetics.com.au');
define('HTTPS_SERVER', 'https://www.crushcosmetics.com.au');
define('HTTP_CATALOG_SERVER', 'https://www.crushcosmetics.com.au');
define('HTTPS_CATALOG_SERVER', 'https://www.crushcosmetics.com.au');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');
Anyone have any ideas? Im stumped.
THanks,
Scott.



