View Single Post
  #85  
Old 04-13-2007, 06:45 PM
 
mvolpes mvolpes is offline
 

Member
  
Join Date: Dec 2006
Posts: 16
 

Default Re: Use E-mail address instead of username 3.5.x & 4.0

Hi all

Those implementing this becareful with this
ALTER TABLE `xcart_orders` ADD UNIQUE (
`email`
);

this will only allow a customer to make an order once from your site ...the next time they come they you will get a sql error..as it only allows the customers email address once..in the order table ..to reverse this use

ALTER TABLE `xcart_orders` DROP INDEX (
`email`
);
__________________
www.bluemaya.com.au
x-cart version 4.0.19
Reply With Quote