Tag: magento 1.9

“101:产品不存在”(Magento API)product.update

我看到了文档,但是我仍然没有在代码中发现错误。 我试图从excel文件添加产品到Magento系统,然后在每个商店视图 (多语言商店) 上更新它 。 为此,我已经完成了下面的PHP脚本。 在这个代码中,我只读了一个Excel行(只是为了告诉你它是如何工作的),然后我将它添加到Magento(实际上是工作 ),然后我试图更新的东西(给出错误 )。 请注意$ col [9]是保存SKU的variables。 注意:我正在使用SOAP,但不是V2。 $rowdata=$sheet->rangeToArray('A' . $row.':'.$maxcol . $row, NULL, TRUE, FALSE); $col=$rowdata[0]; //$soap is the client. $session_id is the logged in SOAP session. $attributeSets = $soap->call($session_id, 'product_attribute_set.list'); $attributeSet = current($attributeSets); $result = $soap->call($session_id, 'catalog_product.create', array('simple', $attributeSet['set_id'], $col[9], array( 'categories' => array(2), 'websites' => array(1), 'name' […]

Magento:“图片不存在”

我正在导入Magento(版本1.9)中的CSV文件。 我收到错误:“图像不存在”。 我试图尽我所能在互联网上find。 我用于上传的模板是从我的导出文件夹中获取的默认模板。 我在图像名称前添加了/,并且还将该文件保存为UTF-8格式。 任何build议将有所帮助。