0
私はMagmiにいくつかの製品をインポートするためにMagmiデータポンプを使用しています。Magmiデータポンプを使用した外部URLからのイメージのインポート
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();
すべての属性は、画像を除き、正しくインポートなっています
は、これまでのところ、私はこれを持っています。これは動作しません。
これは「デフォルト」プロファイルのスクリーンショットです。
Magmiはここにインストールされています:http://www.example.com/import/magmi/web/magmi.php
はなぜ私のイメージのインポートは動作しませんの?