Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

HTTP Cookie Path


guanaco

Recommended Posts

Posted

:'( Help I'm new using oscommerce I'm trying to install but I don't know about the cookie path what is that mine?

Posted

You shouldn't have to worry about the cookie path. It just needs to stay a slash. If you look in configure.php it should be something like this.

 

 define('HTTP_COOKIE_DOMAIN', 'www.yoursite.com');
 define('HTTPS_COOKIE_DOMAIN', 'www.yoursite.com');
 define('HTTP_COOKIE_PATH', '/');
 define('HTTPS_COOKIE_PATH', '/');

or if you have OSCommerce in another directory (lets say the default catalog)

 define('HTTP_COOKIE_DOMAIN', 'www.yoursite.com/catalog');
 define('HTTPS_COOKIE_DOMAIN', 'www.yoursite.com/catalog');
 define('HTTP_COOKIE_PATH', '/');
 define('HTTPS_COOKIE_PATH', '/');

Archived

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

×
×
  • Create New...