For all the "duplicate email address" errors that you are getting from your store - I looked into it and it was actually ignoring the UPDATE SQL statement in create_account.php, the reason that it was ignoring it look to be as it was checking to see how many customers_id's were present - as the customer isn't a customer yet it would always come back 0 - therefore try to INSERT rather than UPDATE
Made 1 tweak too:
includes/modules/YOUR_TEMPLATE/create_account.php
line 320 & 321 change to this
Code:
$check_subscribers_sql = "select count(subscriber_id) as total from " . TABLE_SUBSCRIBERS . "
where email_address = :email:";
just changed customers_id too subscriber_id in count statement
Working for me on 1.3.9h
Thanks
Sarah
Bookmarks