标签: magento cron
我正在发送magento的电子邮件问题,我认为这是由于cron的工作,以下是设置
elasticsearch
cpanel上的cron作业设置
magento上的cron作业设置
我无法弄清楚问题
答案 0 :(得分:0)
在服务器上设置Cron:
您可以每5分钟在服务器上设置一次cron作业:
php -f /home/fullpath/public_html/cron.php
调试:
如果cron Job仍无效,请添加以下代码:
$isShellDisabled = true;
在以下代码行之后:
$isShellDisabled = (stripos(PHP_OS, 'win') === false) ? $isShellDisabled : true;