While creating product, at the last step after retrieving for a time, Magento gives following error-:
SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '1922-1' for key 'IDX_STOCK_PRODUCT'
What I am doing is, by capturing product id, I am putting it's entry in custom table. I have connected to Magento database externally.
Surprisingly data is inserted in both Magento's base table & also in Custom table but why it is giving me that error after product saving...?
I cleared cache, browser cookies. Also remove /var/cache, /var/session. still giving error. Can anybody suggest a solution?
1922-1
inIDX_STOCK_PRODUCT
, and a query is trying to save a new record with that ID again. – Such