Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以每天多次运行 Magento 的产品警报?我正在运行 v1.4.0.1 并且在 System>Config>Catalog>Product Alerts Run Settings 中找到的频率选项仅下降到 Daily。
如果可能,我想每小时运行一次?
谁能告诉我我该怎么做?
我建议你开始查看他的源模型......Mage_Adminhtml_Model_System_Config_Source_Cron_Frequency在那里你可以看到这 3 个常量......你会重写它并添加另一个常量说 const CRON_HOURLY = 'H';
Mage_Adminhtml_Model_System_Config_Source_Cron_Frequency
并且您必须重写/修改以下内容Mage_Adminhtml_Model_System_Config_Backend_Product_Alert_Cron以相应地构建 cron 表达式:)
Mage_Adminhtml_Model_System_Config_Backend_Product_Alert_Cron
虽然我自己从来没有做过这件事,但我认为这会让你走上正轨
HTH :)