-1
如何在magento中逐步設置cron作業。如果我有一個具有設置日期的屬性,我希望cron作業禁用產品,如果一天已經過去...Cron作業禁用產品Magento 1.7 CE
如何在magento中逐步設置cron作業。如果我有一個具有設置日期的屬性,我希望cron作業禁用產品,如果一天已經過去...Cron作業禁用產品Magento 1.7 CE
1)創建一個自定義模塊,有很多指南 - 或使用模塊創建器讓你開始。
2)添加了cron作業設置你的模塊配置
config.xml中
...
<crontab>
<jobs>
<mymodule_disable>
<schedule>
<!-- every 10 min -->
<cron_expr>*/10 * * * *</cron_expr>
</schedule>
<run>
<model>mymodule/Scheduler::disable</model>
</run>
</mymodule_disable>
</jobs>
</crontab>
</config>
現在,創建一個類來處理任務,爲您(MODULENAME /型號/ Scheduler.php)
Scheduler.php
<?php
class Mymodule_Model_Scheduler
{
/**
* Disable prodcuts for us
*/
public static function disable()
{
// This will be run every 10 minutes, we want to get applicable products
// you will need to customize the filter for what you need, subtracting
// or adding date values etc.. you get the idea :)
$date = Mage::getModel('core/date')->gmtDate(); // add/subtract etc
$collection = Mage::getModel('catalog/product')->getCollection();
$collection->addfieldtofilter('custom_date_attr', array(
array('to' => $date),
//array('gteq' => $date)
));
foreach($collection as $product) {
$product->setStatus(Mage_Catalog_Model_Product_Status::STATUS_DISABLED);
$product->save();
}
}
}
現在,你需要設置一個cron作業運行Magentos調度,例如:
*/10 * * * * php -f /path/to/magento/cron.php
你有沒有找到解決辦法? – 2016-05-09 12:25:39