i really hope some one is up and can help me with this. I have searched in the fourm and have not found a solotion to my problem. i just got the ssl cert and i have veryfied that the ssl points to https://www.chucksnuts.com and not https://chuchksnuts.com..
the problem is with the images they do not come up with the https. i have checked each of the images links by looking at the source and the php code and the refure to the images via path and not the absolute path such as www.chucksnuts.com/images/images name.
so then i thought it was my template. i chaged the template to the default and i get the same result. here is my configure.php file settings
Code:// Define the webserver and path parameters // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com define('HTTP_SERVER', 'http://www.chucksnuts.com'); define('HTTPS_SERVER', 'https://www.chucksnuts.com'); // 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', '/'); 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/');




