magento 定时任务

magento 1.X

sh /path/to/your/magento/site/root/cron.sh

magento 2.X

php /path/to/your/magento/site/html/root/magento -- --quiet cron:run

设置定时任务:

crontab -e 
*/5 * * * * sh /path/to/magento/cron.sh >/dev/null 2>&1

或者

*/5 * * * * /usr/bin/php /path/to/magento/cron.php >/dev/null 2>&1

检查是否配置成功:
等几分钟,检查cron_schedule表中状态是否变成success

使用邮件:
magento 1.X:

MAILTO="webmaster@example.com"
*/5 * * * * sh /path/to/magento/cron.sh

magento 2.X

MAILTO="webmaster@example.com"
*/5 * * * * php /path/to/magento/bin/magento -- --quiet cron:run

未经允许不得转载:哈勃私语 » magento 定时任务

本文共466个字 创建时间:2018年7月13日18:18   

分享到:更多 ()