Jump to content

Cannot create new user account in 1.6.0.9


stullko

Recommended Posts

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

×
×
  • Create New...