I've read a few other posts on this issue here, and have done all of the things suggested, but still some of the items (mostly images) in the cart checkout and in the admin are not being pulled from https:// ... And so, the browser indicates that some items on the page are unsecured. In Chrome, this puts red X on the padlock, and strikes through the https:// in red - VERY negative from customer standpoint.
The URL is: redacted (temporary, for development - and using default template still)
1) I have SSL cert installed correctly (the host did it)
2) In System > Settings > Server, I have "Use SSL" checked YES (triple-quadruple-checked this before posting)
3) Here is the config.php:
Code: Select all
<?php
// DIR
define('DIR_APPLICATION', '/........../redacted/catalog/');
define('DIR_SYSTEM', '/........../redacted/system/');
define('DIR_DATABASE', '/........../redacted/system/database/');
define('DIR_LANGUAGE', '/........../redacted/catalog/language/');
define('DIR_TEMPLATE', '/........../redacted/catalog/view/theme/');
define('DIR_CONFIG', '/........../redacted/system/config/');
define('DIR_IMAGE', '/........../redacted/image/');
define('DIR_CACHE', '/........../redacted/system/cache/');
define('DIR_DOWNLOAD', '/........../redacted/download/');
define('DIR_LOGS', '/........../redacted/system/logs/');
// DB
define('DB_DRIVER', 'mysql');
define('DB_HOSTNAME', 'xxx.xxx.xx.xx');
define('DB_USERNAME', 'xxxxxxxxxxxx');
define('DB_PASSWORD', 'xxxxxxxx');
define('DB_DATABASE', 'xxxxxxxx');
define('DB_PREFIX', '');
?>
Code: Select all
<?php
// HTTP
define('HTTP_SERVER', 'http://www.redacted.net/redacted/admin/');
define('HTTP_CATALOG', 'http://www.redacted.net/redacted/');
define('HTTP_IMAGE', 'http://www.redacted.net/redacted/image/');
// HTTPS
define('HTTPS_SERVER', 'https://www.redacted.net/redacted/admin/');
define('HTTPS_IMAGE', 'https://www.redacted.net/redacted/image/');
// DIR
define('DIR_APPLICATION', '/........../redacted/admin/');
define('DIR_SYSTEM', '/........../redacted/system/');
define('DIR_DATABASE', '/........../redacted/system/database/');
define('DIR_LANGUAGE', '/........../redacted/admin/language/');
define('DIR_TEMPLATE', '/........../redacted/admin/view/template/');
define('DIR_CONFIG', '/........../redacted/system/config/');
define('DIR_IMAGE', '/........../redacted/image/');
define('DIR_CACHE', '/........../redacted/system/cache/');
define('DIR_DOWNLOAD', '/........../redacted/download/');
define('DIR_LOGS', '/........../redacted/system/logs/');
define('DIR_CATALOG', '/........../redacted/catalog/');
// DB
define('DB_DRIVER', 'mysql');
define('DB_HOSTNAME', 'xxx.xxx.xx.xx');
define('DB_USERNAME', 'xxxxxxxxxxxx');
define('DB_PASSWORD', 'xxxxxxxx');
define('DB_DATABASE', 'xxxxxxxx');
define('DB_PREFIX', '');
?>
Using OpenCart v.1.4.9.1, clean install, no editing of the template files. All I did was add the logo, upload two products, and do some backend stuff like getting rid of the demo junk.
Is there anything that I'm missing?

Thanks.