I am getting the "This page contains secure and nonsecure items" message on all my secure pages?
I have read most of the other posts concerning this issue but have not been able to resolve my site. As best as I can tell I have not added any http:// links on the secure pages? All of the links come from the links to products or categories the were set up when the categories were created. I thought that all of the links were relative links so I can't find what I did wrong.
I assume the problem may be in my configure.php I uses a shared ssl certificate. Did I set these up wrong? Any help would be greatly appreciated!!!
Here is what the configure.php file looks like:
################################################################################
define('HTTP_SERVER', 'http://www.scrubadub.com');
define('HTTPS_SERVER', 'https://secure.netsolhost.com/scrubadub.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', '/cart/');
define('DIR_WS_HTTPS_CATALOG', '/cart/');
##################################################
The Admin/configure.php looks like this.....
##################################################
define('HTTP_SERVER', 'http://www.scrubadub.com');
define('HTTPS_SERVER', 'https://secure.netsolhost.com/scrubadub.com');
define('HTTP_CATALOG_SERVER', 'http://www.scrubadub.com');
define('HTTPS_CATALOG_SERVER', 'https://secure.netsolhost.com/scrubadub.com');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'false');
// 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_ADMIN', '/cart/admin/');
define('DIR_WS_CATALOG', '/cart/');
define('DIR_WS_HTTPS_ADMIN', '/cart/admin/');
define('DIR_WS_HTTPS_CATALOG', '/cart/');
##########################################################################################




