After migrating servers, I'm getting an error every time I try to update customer information. I'm using a customer activation plugin, but after disabling it, I still get the same error.

SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '7-127' for key 2

What is wrong?

Even after uninstalling the plugin, I get this error while trying to save customer information. So this leads me to believe its a bigger problem with Magento and/or the server I'm switched to.

I checked the Magento's log and I'm getting this Notice multiple times:

ERR (3): User Notice: Sorry, your PCRE extension does not support UTF8 which is needed for the I18N core  in ../httpdocs/store/lib/Zend/Locale/Format.php on line 769

Is this relevant?

link|improve this question

1  
Some code in your Magento system is causing SQL to run which tries to insert data into a database column that's been declared with a unique key. The possible causes for this are legion and if you want an answer on this forum you'll need to put in some debugging time. – Alan Storm May 23 '11 at 22:49
I've updated with all I found in Magento's log. – Luke Burns May 24 '11 at 1:00
"What happens when you trace the SQL that's being run", he asked passive-aggressively. – Alan Storm May 24 '11 at 4:21
feedback

2 Answers

up vote 6 down vote accepted

The issue is because when you migrated your database, mysql helpfully restarts the id columns that are auto-increment and Magento has some hardcoded values that assume that IDs start from zero. You need to disable foreign_key_checks when you import the data.

This blog post runs you through the correct process and steps to rectify if you missed the steps :)

link|improve this answer
thank you! this was the problem. – Luke Burns Jun 8 '11 at 6:06
This is a dead link. Would've been nice to have a copy-paste here for posterity.... – Yanick Rochon May 9 at 14:40
feedback

Your edit is attempting to re-CREATE the user, instead of UPDATE-ing the existing user. It's a bug with the plugin. You may want to report it to the author or wait for an update to come out.

link|improve this answer
After disabling it, I get the same error. – Luke Burns May 23 '11 at 22:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.