尝试使用来自网址的magmi上传图片。
不起作用。图像在后面和前端不可见。
真的只是代码,尝试了一切不起作用,使用http时图像也无效。
$newProductData = array(
'name' => (string)$v[title], // name
'sku' => (string)$v[manufacturer_item_id], // sku
'special_price' => ((real)$v[recommended_retail_price]), // special price
'price' => ((real)$v[recommended_retail_price]), // price
'attribute_set' => 'Fahrrad', // attribute_set
'type' => 'configurable',
'store' => 'admin',
'description' => (string)$v[title], // full description
'short_description' => (string)$v[title], // short description
'qty' => (string) 10, // qty
'category_ids' => $v[category], // ID of categories
'weight' => (string) '', // weight
'tax_class_id' => '2', // tax class id (check your ids)
'manufacturer' => (string) $v[manufacturer_name], // manufacturer
'meta_title' => (string) $v[title], // meta title
'meta_description' => (string)$v[title], // meta description
'meta_keyword' => (string)$v[title] // meta keywords
);
$newProductData['image']='+'.(string)'http://www.velo-zuerich.ch/velo-zuerich-bilder/velo-news/kettenlos-700C-Curve-velo.jpg'; // + show picture, - dont show picture
$newProductData['small_image']='+'.(string)'http://www.velo-zuerich.ch/velo-zuerich-bilder/velo-news/kettenlos-700C-Curve-velo.jpg'; // small img
$newProductData['thumbnail']='+'.(string)'http://www.velo-zuerich.ch/velo-zuerich-bilder/velo-news/kettenlos-700C-Curve-velo.jpg'; // thumbnail
//echo "<pre>";
//print_r($newProductData);
//echo "</pre>";
$dp->ingest($newProductData);
答案 0 :(得分:1)
确保您启用了图像属性处理器插件,这是Magmi导入图片所必需的。
另外,请确保为图像属性处理器配置设置远程图像的预下载检查为启用。
最后,检查您的Magmi日志文件,看看Magmi正在输出什么。如果图像没有导入,Magmi通常会产生错误或警告,说明其日志中的原因。