I have a script that has loaded a product using
$product = Mage::getModel("catalog/product")->loadByAttribute('sku', $data['id']);
If I modify or retrieve a system attribute, such as weight, everything works fine:
$product->getWeight(); // returns the correct weight
$product->setWeight(5.0); // correctly sets weight
I have two custom attributes: google_product_category and mpn. If I try to modify them using the same technique, like so:
$product->setMpn('123ABC');
$product->setGoogleProductCategory('Electronics');
the call does not throw an error but the data does not save (yes, I am calling $product->save() afterwards).
What am I doing wrong?
var/cache. Also you can try to call$product->getResource()->getAttribute('mpn')->getBackend()->getTable()for debugging – Serjio Aug 15 '12 at 12:08