I have a non-shared SSL cert on my site.
Regular html files work correctly & display the little SSL lock in your browser.
https://www.apexdog.com/info.html
Pages in oscommerce display a warning indicating both secure and non-secure content & do not display the little SSL lock.... I tried apexdog.com instead of
www.apexdog.com & I get the same results.
The SSL cert was issued to
www.apexdog.com, not "apexdog.com"
I already read the info at this link::
http://oscdox.com/modules.php?op=mod...p;pagename=SSL & the lines listed for the /admin/includes/configure.php file are different that what is normally there in oscmax or the basic oscommerce release. (it looks like a cut & paste error to me) Also that doc states its for a shared cert, which I don't have..
Any advise on getting this resolved???
The contents of my config files are as follows
Code:
Relavent lines from /includes/configure.php
define('HTTP_SERVER', 'http://www.apexdog.com'); // eg, ..
define('HTTPS_SERVER', 'https://www.apexdog.com'); // eg, ..
define('ENABLE_SSL', true); // secure webserver for chec...
define('HTTP_COOKIE_DOMAIN', 'www.apexdog.com');
define('HTTPS_COOKIE_DOMAIN', 'www.apexdog.com');
define('HTTP_COOKIE_PATH', '/');
define('HTTPS_COOKIE_PATH', '/');
define('DIR_WS_HTTP_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
Relavent lines from /admin/includes/configure.php
define('HTTP_SERVER', 'https://www.apexdog.com'); // eg...
define('HTTP_CATALOG_SERVER', 'https://www.apexdog.com');
define('HTTPS_CATALOG_SERVER', 'https://www.apexdog.com');
define('ENABLE_SSL_CATALOG', 'true'); // secu...
define('DIR_FS_DOCUMENT_ROOT', '/home/apexdog2/public_html/'); //
define('DIR_WS_ADMIN', '/admin/'); // absolute path required
define('DIR_FS_ADMIN', '/home/apexdog2/public_html/admin/'); //
define('DIR_WS_CATALOG', '/'); // absolute path required
define('DIR_FS_CATALOG', '/home/apexdog2/public_html/'); //