cron 作业没有按预期进行...无法正常工作?
我有一个 cron 作业设置为每分钟运行一次。
/usr/bin/php -q /home/domain/public_html/ajax/cron.php > /home/domain/public_html/ajax/cron_output.log
在 cron.php 中,我有
#!/usr/bin/php
<?php
echo 'cron ran';
?>
cron_output.log 我可以看到修改日期每分钟更新一次,但其中的内容是空白的。为什么它没有“cron run”?
这对我来说是一个起点,因为我还有很多代码想要运行,但它没有运行。我也在写入 error_log,但它也没有写入该日志。但是,cron_output.log 上的更新日期正在更改......
任何帮助都会很棒!
I have a cron job setup to run every minute.
/usr/bin/php -q /home/domain/public_html/ajax/cron.php > /home/domain/public_html/ajax/cron_output.log
Inside the cron.php, I have
#!/usr/bin/php
<?php
echo 'cron ran';
?>
The cron_output.log I can see the modified date is updating each minute, but the contents off it is blank. Why wouldn't it have "cron ran"?
This is a starting point for me, because I have a lot more code I'm trying to run, and it's not running. I'm also writing to an error_log, but it's not writing to that log either. However, the update date is changing on cron_output.log....
Any help would be awesome!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
已解决...发生了一些错误。
This is resolved... there were some errors going on.