Magento cron工作问题

时间:2017-06-24 19:58:00

标签: magento cron

我正在发送magento的电子邮件问题,我认为这是由于cron的工作,以下是设置

elasticsearch

cpanel上的cron作业设置

crpn.php file on server

magento上的cron作业设置 enter image description here

我无法弄清楚问题

1 个答案:

答案 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;