Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

SSL


Guest

Recommended Posts

Hi

 

SSL has been instaled and works fine on the index page. When I open other pages its not showing the padlock. i checked with my web supplier they said the links or my pages need changing to https:// is ther a simple way to do this??

 

Regards

 

Barry

Link to comment
Share on other sites

Hi

 

SSL has been instaled and works fine on the index page. When I open other pages its not showing the padlock. i checked with my web supplier they said the links or my pages need changing to https:// is ther a simple way to do this??

 

Regards

 

Barry

the index home page is the last page you want SSL on.

activate SSL in configure.php - both at the shop front and admin.

 

Ken

commercial support - unProtected channel, not to be confused with the forum with same name - open to everyone who need some professional help: either PM/email me, or go to my website (URL can be found in my profile).

over 20 years of computer programming experience.

Link to comment
Share on other sites

Hi

 

SSL has been instaled and works fine on the index page. When I open other pages its not showing the padlock. i checked with my web supplier they said the links or my pages need changing to https:// is ther a simple way to do this??

 

Regards

 

Barry

Link to comment
Share on other sites

the index home page is the last page you want SSL on.

activate SSL in configure.php - both at the shop front and admin.

 

Ken

 

Hi I think this was done see below

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://barrysbargainbooks.co.uk/'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://barrysbargainbooks.co.uk/'); // eg, https://localhost - should not be empty for productive servers

define('ENABLE_SSL', '1'); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', 'barrysbargainbooks.co.uk');

define('HTTPS_COOKIE_DOMAIN', 'barrysbargainbooks.co.uk');

define('HTTP_COOKIE_PATH', 'oscommerce/');

define('HTTPS_COOKIE_PATH', 'oscommerce/');

define('DIR_WS_HTTP_CATALOG', 'oscommerce/');

define('DIR_WS_HTTPS_CATALOG', 'oscommerce/');

define('DIR_WS_IMAGES', 'images/');

define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

define('DIR_WS_INCLUDES', 'includes/');

define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');

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', 'pub/');

define('DIR_FS_CATALOG', dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']));

define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

Link to comment
Share on other sites

change 1 to true as in define('ENABLE_SSL', '1');

 

Ken

commercial support - unProtected channel, not to be confused with the forum with same name - open to everyone who need some professional help: either PM/email me, or go to my website (URL can be found in my profile).

over 20 years of computer programming experience.

Link to comment
Share on other sites

change 1 to true as in define('ENABLE_SSL', '1');

 

Ken

Hi Ken

 

Did that still get certificat error

 

Regards

Link to comment
Share on other sites

define('ENABLE_SSL', '1');

needs to be

define('ENABLE_SSL', 'true');

 

Hi

 

Yes I changed that copy below

 

define('ENABLE_SSL', 'true'); // secure webserver for checkout procedure?

Link to comment
Share on other sites

Hi

 

Yes I changed that copy below

 

define('ENABLE_SSL', 'true'); // secure webserver for checkout procedure?

your SSL is issues to the www version of your site URL so you must add the www before the domain.

 

Ken

commercial support - unProtected channel, not to be confused with the forum with same name - open to everyone who need some professional help: either PM/email me, or go to my website (URL can be found in my profile).

over 20 years of computer programming experience.

Link to comment
Share on other sites

your SSL is issues to the www version of your site URL so you must add the www before the domain.

 

Ken

 

Hi Ken

 

Thats fixed it thanks

 

Regards

 

Barry

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...