jeff123 Posted June 7, 2004 Share Posted June 7, 2004 When I try to Login or Create New Account it is calling ssl. Any ideas how I can turn this off and call login.php etc.? Thanks! Link to comment Share on other sites More sharing options...
bluepony Posted June 7, 2004 Share Posted June 7, 2004 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 More sharing options...
jeff123 Posted June 7, 2004 Author Share Posted June 7, 2004 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 More sharing options...
vasttech Posted June 7, 2004 Share Posted June 7, 2004 Change the HTTPS_SERVER and HTTPS_COOKIE_DOMAIN to point to your http domain. osCommerce Knowledge Base osCommerce Documentation Contributions Link to comment Share on other sites More sharing options...
jeff123 Posted June 7, 2004 Author Share Posted June 7, 2004 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 More sharing options...
bluepony Posted June 7, 2004 Share Posted June 7, 2004 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 More sharing options...
vasttech Posted June 8, 2004 Share Posted June 8, 2004 Yeah, I won't put personal information on a site that does not use ssl. To disable it just for that page you would have to edit the code that calls that page to only allow NONSSL. But again, I think you would be better off leaving it SSL. osCommerce Knowledge Base osCommerce Documentation Contributions Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.