stullko Posted December 8, 2014 Share Posted December 8, 2014 I cannot create a new account in 1.6.0.9 I get an error when pressing the button: Register - it says "There is 1 error 1. An error occured while creating your account" When i look in DB, if i try to register new account, id assigned to new user is 0. url: http://www.domace.sk/objednavka Anyone who may help me? Link to comment Share on other sites More sharing options...
tuk66 Posted December 8, 2014 Share Posted December 8, 2014 Something is wrong with your database, to my mind. Make sure that id_customer field can be incremented.CREATE TABLE IF NOT EXISTS `ps_customer` ( `id_customer` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_shop_group` int(11) unsigned NOT NULL DEFAULT '1',.... `max_payment_days` int(10) unsigned NOT NULL DEFAULT '60', PRIMARY KEY (`id_customer`), KEY `customer_login` (`email`,`passwd`), KEY `id_customer_passwd` (`id_customer`,`passwd`), KEY `id_gender` (`id_gender`), KEY `customer_email` (`email`), KEY `id_group_shop` (`id_shop_group`), KEY `id_shop` (`id_shop`)) ..... Link to comment Share on other sites More sharing options...
Recommended Posts