Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Login and Create Account calls SSL


jeff123

Recommended Posts

Edit your catalog/includes/configure.php file. Change:

define('ENABLE_SSL', true);

to

define('ENABLE_SSL', false);

Do the same in catalog/admin/includes/configure.php.

I'd rather be flying!

Link to comment
Share on other sites

Hmmm...that didn't seem to do it. Below is a sample of my configure.php file

--------------------

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

define('HTTPS_SERVER', 'https://host5.webserver10.com/mywebsite'); // eg, https://localhost - should not be empty for productive servers

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

define('HTTP_COOKIE_DOMAIN', 'mywebsite.com');

define('HTTPS_COOKIE_DOMAIN', 'host5.webserver10.com/mywebsite');

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

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

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

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

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

-----------

 

See anything weird going on?

 

Thank you.

Link to comment
Share on other sites

Thanks for the reply - I still want SSL during checkout but not when the user goes to Login or Create new account. I will try what you suggested and see what happens.

 

Thanks for (all) the suggestions.

 

J

Link to comment
Share on other sites

I still want SSL during checkout but not when the user goes to Login or Create new account.

Ah, just curious but why not? It gives customers that warm fuzzy feeling when they see they are secure when sharing their personal information. :)

I'd rather be flying!

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...