Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

customer is being sent to login after checkout_confirmation.php


Guest

Recommended Posts

When my customers checkout and click on confirm checkout they are being sent to login.php and their kicked out of their session.

 

also if they try to re-login at that page it won't log them in. the only way to log in again is to go from the SSL page back to the http:// page and sign in again. these are my settings.

 

 

  define('HTTP_SERVER', 'http://www.usbreathalyzer.com');
 define('HTTPS_SERVER', 'https://ssl4.westserver.net/usbreathalyzer.com');
 define('ENABLE_SSL', 'true');
 define('HTTP_COOKIE_DOMAIN', 'usbreathalyzer.com');
 define('HTTPS_COOKIE_DOMAIN', 'ssl4.westserver.net/usbreathalyzer.com');
 define('HTTP_COOKIE_PATH', '/');
 define('HTTPS_COOKIE_PATH', '/');
 define('DIR_WS_HTTP_CATALOG', '/');
 define('DIR_WS_HTTPS_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/');

 define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
 define('DIR_FS_CATALOG', '/var/www/html/');
 define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
 define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

Cache:

Use Cache false

Cache Directory /tmp/

 

Session Directory /tmp

Force Cookie Use False

Check SSL Session ID False

Check User Agent False

Check IP Address False

Prevent Spider Sessions True

Recreate Session False

Link to comment
Share on other sites

I know this problem definitely problem in sessions. several way you can fix your issue, do the search in the forum and you will find the answer.

Please read this line: Do you want to find all the answers to your questions? click here. As for contribution database it's located here!

8 people out of 10 don't bother to read installation manuals. I can recommend: if you can't read the installation manual, don't bother to install any contribution yourself.

Before installing contribution or editing/updating/deleting any files, do the full backup, it will save to you & everyone here on the forum time to fix your issues.

Any issues with oscommerce, I am here to help you.

Link to comment
Share on other sites

try

  define('HTTP_COOKIE_DOMAIN', 'usbreathalyzer.com');
 define('HTTPS_COOKIE_DOMAIN', 'ssl4.westserver.net');
 define('HTTP_COOKIE_PATH', '/');
 define('HTTPS_COOKIE_PATH', '/usbreathalyzer.com/');

 

If that doesn't work it may be payment module related - which are you using?

Link to comment
Share on other sites

i just checked some authorize.net topics and it seems to be the source of the problem, but still having trouble with it. i'll investigate more topics.

Link to comment
Share on other sites

  • 1 month later...

Are you hosted on a dedicated server or shared?

You may want to ask your provider if they had done some modifications/updates.

By the way do the payment transactions work?

Link to comment
Share on other sites

  • 2 weeks later...
Are you hosted on a dedicated server or shared?

You may want to ask your provider if they had done some modifications/updates.

By the way do the payment transactions work?

 

i'm on a shared server. my other stores work fine. the only difference between them is this site is RC2.

Link to comment
Share on other sites

Looks like you have a shared ssl. Try setting the https cookie domain and path to these.

  define('HTTPS_COOKIE_DOMAIN', '');
 define('HTTPS_COOKIE_PATH', '');

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...