使用Magmi datapump从外部URL导入图像

时间:2017-02-24 14:50:54

标签: php magento magmi

我正在使用Magmi数据泵将一些产品导入Magento。

到目前为止我有这个:

require_once("../../magmi/inc/magmi_defs.php");
require_once("../../magmi/integration/inc/magmi_datapump.php");

$dp = Magmi_DataPumpFactory::getDataPumpInstance("productimport");

$dp->beginImportSession("Default","create");

$newProductData = array(
    'type'                  => 'simple',
    'sku'                   => "test-simple",
    'qty'                   => 1000,
    'color'                 => 'Brown',
    'price'                 => 10,
    'name'                  => 'test simple',
    'tax_class_id'          => 1,
    'is_in_stock'           => 1,
    'store'                 => 'admin',
    'economic_productgroup' => 700,
    'image'                 => '+http://blogs.smh.com.au/entertainment/getflickd/44655_native.jpeg.jpg',
    'small_image'           => 'http://blogs.smh.com.au/entertainment/getflickd/44655_native.jpeg.jpg',
    'thumbnail'             => 'http://blogs.smh.com.au/entertainment/getflickd/44655_native.jpeg.jpg'
);

$dp->ingest($newProductData);

$dp->endImportSession();

除图片外,所有属性都正确导入。这不起作用。

这是来自"默认"轮廓。

enter image description here

enter image description here

Magmi安装在此处:http://www.example.com/import/magmi/web/magmi.php

为什么导入我的图片不起作用?

1 个答案:

答案 0 :(得分:0)

通过在web界面中创建新配置文件解决问题,其设置与我在"默认"中的设置完全相同轮廓。不知道为什么会这样。