Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Problem with Creating Accounts,Checkout,log-in....


wumagic

Recommended Posts

When I try to creat an account it searches and then comes back with the good old cannot find page.. Same goes for when I click on log-in and also when I try to proceed to the checkout screen... Has anyone else run into this problem before? What else do I have to configure?

 

Thanks

 

Frank-

Link to comment
Share on other sites

I have a right out of the box install configuration. uploaded and ran the /catalog/install.php file.. everything went good. I am able to browse around, access the admin area. view items add them to my cart but cannot proceed to checkout or create a account..

Link to comment
Share on other sites

I have even tried to re-install it, I completely deleted all of the files and uploaded it all and re-installed it... I am still getting the same results in not being able to create an account or access "my account"

 

This is a standard install, completed without any errors or missing files.

 

any ideas?

Link to comment
Share on other sites

Bird Brain - Below is my Configure.php i have placed in bogus domains, usernames & passwords

 

 

<?php

/*

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2003 osCommerce

 

Released under the GNU General Public License

*/

 

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

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

define('HTTP_CATALOG_SERVER', 'http://www.mydomain.com');

define('HTTPS_CATALOG_SERVER', 'https://www.mydomain.com');

define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module

define('DIR_FS_DOCUMENT_ROOT', '/home/myusername/public_html'); // where the pages are located on the server

define('DIR_WS_ADMIN', '/shop/admin/'); // absolute path required

define('DIR_FS_ADMIN', '/home/myusername/public_html/shop/admin/'); // absolute pate required

define('DIR_WS_CATALOG', '/shop/'); // absolute path required

define('DIR_FS_CATALOG', '/home/myusername/public_html/shop/'); // absolute path required

define('DIR_WS_IMAGES', 'images/');

define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/');

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_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/');

define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');

define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');

define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');

define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');

 

// define our database connection

define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers

define('DB_SERVER_USERNAME', 'myusername');

define('DB_SERVER_PASSWORD', 'mypassword');

define('DB_DATABASE', 'myusername');

define('USE_PCONNECT', 'false'); // use persisstent connections?

define('STORE_SESSIONS', ''); // leave empty '' for default handler or set to 'mysql'

?>

Link to comment
Share on other sites

Frank,

 

The catalog has a configure file too...the one you posted is for the admin.

 

Do you actually have a secure host? If not change these defines in both configs and try it again.

 

define('HTTPS_CATALOG_SERVER', 'HTTP://www.mydomain.com');

define('ENABLE_SSL_CATALOG', 'FALSE'); // secure webserver for catalog module

Link to comment
Share on other sites

im going to re-install it again, I do not have a secure server.. I looking in my catalog directory and I do not see "configure.php" I assume that would be default.php? the one I posted was from the /catalog/includes directory

Link to comment
Share on other sites

Sorry, I should wear my glasses.....You don't have to reinstall...just change the configure.php file.

 

You are correct, they are in the includes directory.

Link to comment
Share on other sites

If you have access to the tmp file and you are not sharing your server with another OSC shop you can store the sessions there. Storing them in the dB eliminates that potential problem.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...