Magento SOAP API V2

时间:2014-01-13 09:13:14

标签: php mysql api magento soap

使用循环导入大数据时出现问题。

这是代码:

<code>
while($rows = oci_fetch_array($oraclesql, OCI_BOTH)){

            $manu = ucfirst($rows[0]);


$attributeCode = "manufacturer";
$label = array (
   array(
    "store_id" => array("0"),
    "value" => $manu
   )
  );

$data = array(
   "label" => $label,
   "order" => "0",
   "is_default" => "0"
  );

$orders = $proxy->catalogProductAttributeAddOption($sessionId, $attributeCode, $data); 

}
</code>

所以我很重要的是从Oracle表中导入制造商,但一段时间后就停止导入,没有我能看到的错误。我需要导入约750条记录。

我在MYSQL上增加了ram和缓存,PHP增加了对Magento的超时会话。

0 个答案:

没有答案