Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

problem with accounts


cullensc

Recommended Posts

hello. i just implemented OSCommerce 2.2 on my webserver. The install went through perfectly. The administration panel works perfectly, but some how when I view my "store", I cannot login, create new account, and view my account. it gives me 404 errors, but I checked the web dir and those files are not missing.

 

Whats up with this?

 

thanks.

Link to comment
Share on other sites

Hello cullen,

osCommerce is most securely used with the ssl protocol and a https server selected, however, if you do not have access to these just go to your includes/configure.php file in a text editor, and turn the enable ssl to false. That should do the trick. Or you can specify a https (or shared) server like I have. Here is a copy of my file

 

  define('HTTP_SERVER', 'http://endtrail.com'); // eg, http://localhost - should not be empty for productive servers
 define('HTTPS_SERVER', 'https://hornet.xssl.net/endtrail.com'); // eg, https://localhost - should not be empty for productive servers
 define('ENABLE_SSL', true); // secure webserver for checkout procedure?
 define('HTTP_COOKIE_DOMAIN', 'endtrail.com');
 define('HTTPS_COOKIE_DOMAIN', 'endtrail.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/');

 

Good Luck

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...