How to import products images from external url in magento 1.7.0?
问题 I want to import some products images in 'media/import' directory from a external source url in magento 1.7 version. Someone please help me ! 回答1: Here is an example $image_location = getDownloadImage("product",$image_url); if ( file_exists($image_location) ) { $product->addImageToMediaGallery($image_location,array('thumbnail','small_image','image'),true,false); } // Download Image public function getDownloadImage($type,$file){ $path = str_replace("index.php","",$_SERVER["SCRIPT_FILENAME"]);