Plesk 11.5中的MailPoet Cron Job

时间:2014-10-24 11:34:40

标签: php wordpress cron plesk

我正在尝试通过Plesk 11.5在我的共享主机空间上运行一个cron作业URL,而不是通过。我想做的就是每分钟运行一个URL。该网址看起来像this

此URL是MailPoetURL,它在运行时发送队列中的所有电子邮件。

计划任务的plesk控件如下所示:

enter image description here

我已通过托管确认Path to executable file,但我需要在Arguments中使用我需要的内容。我试过以下对我不起作用的论点:

wget [[httplink mentioned above]]    
wget -q -O /dev/null [[httplink mentioned above]]    
/usr/bin/wget -q -O /dev/null [[httplink mentioned above]]

1 个答案:

答案 0 :(得分:0)

我认为您的服务器操作系统是Windows,因此wget不适合您。

相反,您可以使用

之类的内容在/ httpdocs文件夹中创建PHP脚本
<?php
    file_get_contents('http://<your full url here>');

并在“Arguments”中输入此脚本的路径,如:

plesk cron task call php on Windows

注1:我注意你必须使用“php-cgi.exe”,但只需“php.exe”。

注2:使用“立即运行”立即检查。