2018年3月8日星期四

magento定时任务

magento 1.X
sh /path/to/your/magento/site/root/cron.sh
  • 1
magento 2.X
php /path/to/your/magento/site/html/root/magento -- --quiet cron:run
  • 1
设置定时任务:
crontab -e 
*/5 * * * * sh /path/to/magento/cron.sh >/dev/null 2>&1
  • 1
  • 2
或者
*/5 * * * * /usr/bin/php /path/to/magento/cron.php >/dev/null 2>&1
  • 1
检查是否配置成功:
等几分钟,检查cron_schedule表中状态是否变成success
这里写图片描述
使用邮件:
magento 1.X:
MAILTO="webmaster@example.com"
*/5 * * * * sh /path/to/magento/cron.sh
  • 1
  • 2
magento 2.X
MAILTO="webmaster@example.com"
*/5 * * * * php /path/to/magento/bin/magento -- --quiet cron:run 

没有评论:

发表评论

注意:只有此博客的成员才能发布评论。

Also Read: