简体   繁体   English

php cron工作无法正常工作

[英]php cron job not working

I try to create a cron job in my hosting on godaddy but this cron didn't send any email yet. 我尝试在godaddy的托管中创建一个cron作业,但是这个cron还没有发送任何电子邮件。

that how i did the cron job: 我是怎么做cron工作的:

1-login into my account in godaddy.com 1 - 登录godaddy.com我的帐户

2-go to cpanel 2 - 去cpanel

3-enter in cron job 3进入cron工作

4-on add new cron job Common Settings i select each minute 4-on添加新的cron作业通用设置我选择每分钟

5- Command :i put like this: /usr/local/bin/php -q/home/username/public_html/testcron.php 5- 命令 :我这样说: / usr / local / bin / php -q / home / username / public_html / testcron.php

The code in testcron.php this is: testcron.php中的代码是:

$to="email address";
$from="auto_responder@webinstrect.com";
$subject='Testing Cron';
$message='<h2>Cron is working remove test cron job now.</h2>';
$headers="From:$from\n";
$headers .="MINE-Version:1.0\n";
$headers .="Content-type:text/html;charset=iso-8859-1\n";
mail($to,$subject,$message,$headers);

I test this page alone without a cron i receive an email in my junk folder 我没有cron我单独测试这个页面我在垃圾文件夹中收到一封电子邮件

also i tired to write the Command like this: home/username/public_html/testcron.php 我也厌倦了写这样的命令home / username / public_html / testcron.php

The problem that i didn't receive any email. 我没有收到任何电子邮件的问题。 Any suggestion to solve this problem ?!! 有什么建议可以解决这个问题吗?!!

在此输入图像描述

Did you try running your command ( usr/local/bin/php -q/home/username/public_html/testcron.php ) from the terminal? 您是否尝试从终端运行命令( usr/local/bin/php -q/home/username/public_html/testcron.php )? There doesn't seem to be anything wrong with what you're doing ( except for that there's no space between -q and /home in your command) 你正在做什么似乎没有任何问题(除了你的命令中-q和/ home之间没有空格)

cron cron的

"At every minute" “每时每刻”

Minute  Hour  Day  Month  Weekday  Command  

1       *     *    *      *        php /home/username/public_html/testcron.php

Reload a page once in 5 minutes in background 在后台5分钟内重新加载一次页面

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM