我有更新价格和数量的脚本,但在实时服务器上花费了太多时间。我尝试执行脚本 4 到 5 个小时,但无法完成过程。我还在我的本地主机上测试了脚本,更新 1400 个产品大约需要 1 小时 30 分钟。
请检查我的以下脚本并建议我的想法,以便我可以减少本地和生活的时间。
<?php
require_once 'app/Mage.php';
$app = Mage::app('default');
ini_set('max_execution_time', 0);
$currentStore = Mage::app()->getStore()->getId();
Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);
umask(0);
$path = ''.$_SERVER['DOCUMENT_ROOT'].'/product_stock_price.csv';
$readfile = file ($path);
$j=0;$k=0;
for ($i=1; $i < count($readfile); $i++ ) {
$fields = split('"',$readfile[$i]);
$sku=split(',',$fields[0]);
$arr=array('sku'=>$sku[0],'stock'=>$fields[1],'price'=>$fields[3]);
//print_r($arr);
$sku= $arr['sku'];
//print_r($sku);die;
$product = Mage::getModel('catalog/product')->setStoreId(1)->loadByAttribute('sku',$sku);
if ($product)
{
//echo $product->getPrice();
$product->setWebsiteId(1);
$product->setStoreId(1);
$product->setPrice($fields[3]);
$product->save();
$productId = $product->getId();
$stockItem =Mage::getModel('cataloginventory/stock_item')->loadByProduct($productId);
$stockItemId = $stockItem->getId();
$stockItem->setData('manage_stock', 1);
$stockItem->setData('qty', $fields[1]);
$stockItem->save();
// echo $SKU," Updated: Name: '",(string)$XMLproduct->Name,"', Price: ",$fields[3],", Stock level: ",$fields[1];
$updated++;
$j+=1;
}
else
{
$k+=1;
echo $sku." product not found.</br>";
}
}
echo "Total Row : ".count($readfile)." Proceed row : ".$i." Inserted Row : ".$j." Not Found : ".$k;
?>
请给我一些解决方案。
谢谢贾尔佩什