I have the following code in a script, to add an image to an existing product in Magento:
// Do we have an image already?
$mediaApi = Mage::getModel("catalog/product_attribute_media_api");
$images = $mediaApi->items($product->getId());
if ($update_images || count($images) < 1) {
if (count($images) < 1) {
var_dump($images);
echo "No existing image.$EOL";
}
if ($data['Image Link']) {
$local_img_path = './tempimg.' . end(explode('.', $data['Image Link']));
if (strpos($local_img_path, '?') !== false)
$local_img_path = substr($local_img_path, 0, strpos($local_img_path, '?'));
// download image
echo "Downloading image from {$data['Image Link']} to $local_img_path...";
if (save_image($data['Image Link'], $local_img_path)) {
if (count($images) > 0) {
// delete existing image(s)
$mediaApi = Mage::getModel("catalog/product_attribute_media_api");
$items = $mediaApi->items($product->getId());
foreach($items as $item) {
$mediaApi->remove($product->getId(), $item['file']);
$fileName = Mage::getBaseDir('media'). '/catalog/product' . $item['file'];
if(file_exists($fileName))
unlink($fileName);
}
}
// add image
echo "Adding image to Magento...";
$product->setMediaGallery(array('images' => array(), 'values' => array() ));
$product->addImageToMediaGallery($local_img_path, array('image', 'thumbnail', 'small_image'), false, false);
$product->save();
var_dump($mediaApi->items($product->getId()));
unset($product);
// delete downloaded image
unlink($local_img_path);
echo 'Image Done.'.$EOL;
} else {
echo "404 IMAGE! SKU: {$data['id']}, URL: {$data['Image Link']} $EOL";
}
}
}
The second var_dump surely should show that there is now an image present - but there is not. Could anybody tell me why? This code worked when adding images initially.