osCommerce and osCMax shopping cart software forums

Shopping Cart Software

osCommerce with teeth!

 
 

Another problem with customer accounts

This is a discussion on Another problem with customer accounts within the osCMax v1.7 Installation forums, part of the osCMax v1.7 Forums category; Hi, I so appreciate osCommerce, the MAX package, and the community of helpers. I'm brand new to osCommerce, but I ...


Go Back   osCommerce and osCMax shopping cart software forums > osCMax v1.7 Forums > osCMax v1.7 Installation

Register FAQ Members List Calendar Mark Forums Read


Free community membership! Fast easy FREE membership
Closed Thread

 

LinkBack Thread Tools
  #1  
Old 02-27-2004, 02:33 AM
New Member
 
Join Date: Feb 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
storyleader
Default Another problem with customer accounts

Hi, I so appreciate osCommerce, the MAX package, and the community of helpers. I'm brand new to osCommerce, but I recognize a place where people have clearly invested lots of work and care.

Here's my problem: I can enter a new (customer) account easily. But osCommerce fails to recognize me as the new customer. (No "Hi, Bob, what do you want to buy..." kind of message.) When I go to checkout and then try to login, I get this message:

"Error: No match for E-Mail Address and/or Password."

If I try to re-register with the same info, I get a message saying that the email name is already taken.

Using mysql monitor, I can see that this customer accounts info I've entered is, in fact, in the "customers" table.

I am able to create products and categories just fine.

Help! I've been careful about the permissions. I'm using Red Hat Linux, Apache, PHP 4.2.2, MySQL 3.23.56. I get the same results using 2 different browsers.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Sponsored Links
Advertisement
  #2  
Old 02-27-2004, 05:55 AM
Member
 
Join Date: Jan 2004
Location: edmonton, Alberta, Canada
Posts: 62
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
peteyg
Default

Try clearing your customers table...Get rid of the test accounts and what not. See if it will add your new customers now. It seems you have contracted some sort of glitch! lol a weird one at that.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #3  
Old 02-27-2004, 09:26 AM
New Member
 
Join Date: Feb 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
storyleader
Default

Thanks for the idea. I deleted the rows from customers and customers_info. Same result. I'm bounced back to "Welcome, Guest..."

When I try to login with the info I just gave, I get the same "Welcome Guest..." screen again.

The info is going in to the customers and customers_info tables. If I try to enter the same info again, I get:

"Your E-Mail Address already exists in our records - please log in with the e-mail address or create an account with a different address."

I don't know what else to try.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #4  
Old 02-27-2004, 11:28 AM
jpf's Avatar
jpf jpf is offline
Moderator

 
Join Date: Sep 2003
Location: Manitoba, Canada
Posts: 1,808
Thanks: 5
Thanked 105 Times in 91 Posts
Rep Power: 12
jpf is a name known to alljpf is a name known to alljpf is a name known to alljpf is a name known to alljpf is a name known to alljpf is a name known to all
Default

COOKIE PROBLEM....? Post your configure.php (less the DB info).
__________________
JPF - osCMax Fourm Moderator
Try out our osCMax at: Live Catalog Demo
Limited access Admin: Live Admin Demo
Feel free to add products they way you want and then purchase them -=+=- Sorry nothing will be billed or shipped!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #5  
Old 02-27-2004, 03:45 PM
New Member
 
Join Date: Feb 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
storyleader
Default

Quote:
Originally Posted by jpf
COOKIE PROBLEM....? Post your configure.php (less the DB info).
Here it is:

<?php
/*
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

Copyright (c) 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', 'https://secure.storydynamics.com'); // eg, http://localhost - should not be empty for productive servers
define('HTTP_CATALOG_SERVER', 'https://secure.storydynamics.com');
define('HTTPS_CATALOG_SERVER', 'https://secure.storydynamics.com');
define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module
define('DIR_FS_DOCUMENT_ROOT', '/home/storydynamicscom/catalog/'); // where the pages are located on the server
define('DIR_WS_ADMIN', '/catalog/admin/'); // absolute path required
define('DIR_FS_ADMIN', '/home/storydynamicscom/catalog/admin/'); // absolute pate required
define('DIR_WS_CATALOG', '/catalog/'); // absolute path required
define('DIR_FS_CATALOG', '/home/storydynamicscom/catalog/'); // 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', '[cloaked]');
define('DB_SERVER_PASSWORD', '[cloaked]');
define('DB_DATABASE', '[cloaked]');
define('USE_PCONNECT', 'false'); // use persisstent connections?
define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'
?>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #6  
Old 02-27-2004, 03:49 PM
New Member
 
Join Date: Feb 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
storyleader
Default

Oh - one other thing I tried today that didn't seem to help is that I upgraded to PHP 4.3.4.

Doug
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #7  
Old 02-27-2004, 04:05 PM
New Member
 
Join Date: Feb 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
storyleader
Default

One other thing I notice, in case it helps: I can put something in my shopping cart; it stays there while I visit other pages.

But as soon as I create a customer login, the cart goes to empty. (At that point, I'm bumped back to "Guest" and the opening screen.)

I tried changing some of the settings in the "sessions" pane of the admin program. They didn't make a difference.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #8  
Old 03-10-2004, 07:54 AM
Anonymous
Guest
 
Posts: n/a
Default

Hello
I've just installed on a shared server ,so have choosen the session store as mysql also.
I am seeing exactly the same probs as storyleader.
Can anyone pls help?

Regards
Rob
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #9  
Old 03-10-2004, 09:18 AM
michael_s's Avatar
osCMax Developer

 
Join Date: Jul 2002
Location: Phoenix, AZ
Posts: 11,075
Thanks: 81
Thanked 348 Times in 327 Posts
Rep Power: 10
michael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond reputemichael_s has a reputation beyond repute
Default

That is the admin configure.php file, we need to see the catalog configure.php file. That is the one causing the problems. It is most definitely a cookie path issue or a session issue. Your session is dropping when you change to SSL. Make sure Force Cookies is OFF in the admin.
__________________
Michael Sasek
osCMax Developer


  • osCMax Templates - Hundreds of premium quality templates designed for osCMax 2. Loyalty discounts up to 30% off!
    Each purchase supports the osCMax project with much needed funds!

  • xShop for osCMax - Windows Based osCMax administration. Improved workflow, security, speed and convenience.

  • osCMax Hosting - From basic hosting to High Availability, Load Balanced arrays, the most experienced osCMax host. Default multi server configuration for exceptional performance!

  • osCMax Template Tutorial - Learn how to make your own custom templates and how to use the powerful features of the osCMax template system.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Sponsored Links
Advertisement
Closed Thread

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
Strange problem with accounts bfr osCMax v1.7 Discussion 3 10-30-2004 05:44 AM
Customer registering problem quickchick osCommerce 2.2 Modification Help 1 08-06-2004 07:00 AM
Problem with CheckOut, Creating New Accounts, and Logging in Anonymous osCMax v1.7 Discussion 1 07-19-2004 09:09 AM
New Customer and shipping address problem LSVF osCMax v1.7 Discussion 6 02-05-2004 07:45 AM
Transfer customer accounts and past sales??? cxm322 osCMax v1.7 Discussion 3 01-16-2004 07:06 AM


All times are GMT -8. The time now is 01:14 AM.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO
http://www.oscmax.com/forums/
Copyright 2008 osCMax