Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

SSL Certificate error


pinoy8

Recommended Posts

define('HTTP_SERVER', 'http://www.shinyauto.biz'); // eg, http://localhost - should not be empty for productive servers
 define('HTTPS_SERVER', 'https://www.shinyauto.biz'); // eg, https://localhost - should not be empty for productive servers
 define('ENABLE_SSL', true); // secure webserver for checkout procedure?
 define('HTTP_COOKIE_DOMAIN', 'www.shinyauto.biz');
 define('HTTPS_COOKIE_DOMAIN', 'www.shinyauto.biz');

 

as you can see, if u visit the site a pop up warning will show. The first two are ok except for the third one. The third one is a yellow warning. I believe the certificate is registered to 'www.shinyauto.biz', the coding is right there, pls help me with my error. Thank You in advance.

Link to comment
Share on other sites

You've got about 4 references to images using https://shinyauto.biz/ (without the www.)

 

(Just open source view on the main (start) page and search for https.)

 

body{background-image: url("https://shinyauto.biz/catalog/images/bg.jpg");background-repeat: repeat-x; background-position: top center;}

 

Fix those and you'll be OK.

 

There's a little trick you can use (common for ssl logos/tags)

 

Set up the links like so:

 

body{background-image: url("//www.shinyauto.biz/catalog/images/bg.jpg");background-repeat: repeat-x; background-position: top center;}

 

Leave off the http: or the https: and the mode will be supplied/determined by the browser

Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux

Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management)

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...