Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to update several products that are fed from an XML file using:

 $productid = Mage::getModel('catalog/product')->getIdBySku($url->product);
 echo 'Loaded Product: ' . $url->product;

 // Initiate product model
 $product = Mage::getModel('catalog/product');
 $product->setPrice($url->price);

 try 
 {
    $product->save();
        echo "Save / Updated"."\r\n";
  }
  catch (Exception $ex) {
        echo "<pre>".$ex."</pre>";
  }

The problem I'm getting a SQL error:

exception 'Mage_Eav_Model_Entity_Attribute_Exception' with message 'SQLSTATE[23000]:
Integrity constraint violation: 1062 Duplicate entry '531-0-82-1.0000-0'

The product with the ID of 531 does exist in my db, all I'm wanting to do is update it's price.

Does anyone know what could be causing this?

Many thanks

share|improve this question
Mage is trying to insert, you need to get it to do an update if the product already exists. – deed02392 Feb 6 '12 at 12:26
I gathered that. Is there an easy way to update? I've only ever seen $product->setXX $product->save() – sipher_z Feb 6 '12 at 12:37
Never used Mage, but it is open source. Read the class for an update method, or modify the set method to perform an insert or update SQL query. – deed02392 Feb 6 '12 at 12:39

2 Answers

up vote 0 down vote accepted

Well it seemed to not like the fact I had tiered prices on that product.

Cleared them, re-indexed, re-created tiered pricing, all seems good

share|improve this answer

Try this to update

$product = Mage::getModel('catalog/product');

change to

$product = Mage::getModel('catalog/product')->load($productid);

You have to load a product to update its attributes.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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