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 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.

share|improve this question

closed as too localized by casperOne Aug 15 '12 at 13:53

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Embarrassing and infuriating - I fixed it by deleting app/code/core/Mage and replacing it with a freshly downloaded copy of that folder. Looks like some of the core files had been edited, and broken in the process.

The moral of the story - Don't Edit the Core.

share|improve this answer

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