I ran into a bug when trying to log in to my account. There is an extra field added in the new code that is not in the db "customers_block". This is the section of the instructions where there is a problem (at least for me)...
13. /catalog/login.php
***FIND:
$check_customer_query = tep_db_query("select customers_id, customers_firstname, customers_password, customers_email_address, customers_default_address_id from " . TABLE_CUSTOMERS . " where customers_email_address = '" . tep_db_input($email_address) . "'");
***REPLACE WITH:
// PWA BOF
// using guest_account with customers_email_address
$check_customer_query = tep_db_query( "select customers_id, customers_firstname, customers_password, customers_email_address, customers_default_address_id, customers_block, guest_account from " . TABLE_CUSTOMERS . " where customers_email_address = '" . tep_db_input($email_address). "' and guest_account='0'");
// PWA EOF
IF YOU GET AN ERROR, remove customers_block, from the new code. As soon as I removed that it worked. BLANK FILE ATTACHED.
More...




LinkBack URL
About LinkBacks









Bookmarks