Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

SSL warning


angelbud

Recommended Posts

Posted

I have a small ssl problem that brings up a warning when a user logs into or creates an account before they add an item to the cart

 

For example if i was to login to my account (login.php) this is https, once i have entered user and password and select login i get the Security Alert message that i am about to be directed to a page that is not secure - which is index.php

 

how can i correct this without changing this line to https (which does fix the problem although i dont want the directory https

 

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

 

This is the config

 

// Define the webserver and path parameters

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

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

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

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

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

define('HTTP_COOKIE_DOMAIN', 'www.facepaintshop.co.uk');

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

define('HTTP_COOKIE_PATH', '/');

define('HTTPS_COOKIE_PATH', '/');

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

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

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

 

Thanks

Archived

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

×
×
  • Create New...