Error when uploading remote images using Magmi ( No URL set!)
If you are trying to import images from a remote server using "image","small_image","thumbnail" "http://example.com/img1","http://example.com/img2","http://example.com/img3" and Image attributes processor with debug mode enabled reported: Image attributes processor vX - error copying media/catalog/product/x/y/x.jpg; No URL set! if the image URL displays the right image then it is probably because the php function copy is not enabled on your server, to fix this open magmi/plugins/extra/itemprocessors/imageprocessor/imageitattributeemprocessor.php and modify the function public function saveImage($imgfile, $target) { $result = $this->_mdh->copy($imgfile, $target); return $result; } by public function saveImage($imgfile, $target) { ...