Cron centOS“无法打开输入文件”错误

时间:2014-01-30 12:00:14

标签: php cron centos

我试图通过cron运行php文件,但它不起作用。当我在浏览器中输入我的脚本的url时,它可以工作。所以我认为问题出在cron中。我的os是centOS。

这是crontab。

* * * * *  /usr/bin/php /var/www/htdocs/wordpress/text.php

text.php的内容是""

来自cron的电子邮件说,

X-Cron-Env: <LANG=en_US.UTF-8>
X-Cron-Env: <SHELL=/bin/sh>
X-Cron-Env: <HOME=/root>
X-Cron-Env: <PATH=/usr/bin:/bin>
X-Cron-Env: <LOGNAME=root>
X-Cron-Env: <USER=root>
Status: RO

Could not open input file: /var/www/htdocs/wordpress/text.php

这是&#34; ls -l / var / www / htdocs&#34;

-rw-r--r--.  1 root root     50  1 29 22:04 2014 index.html~
-rw-r--r--.  1 root root     22  1 29 22:04 2014 index.php
drwxr-xr-x. 13 root apache 4096  1 30 14:36 2014 phpmyadmin
drw-rw-rwx.  8 root root   4096  1 30 20:11 2014 wordpress

你能告诉我怎么解决这个问题吗?

1 个答案:

答案 0 :(得分:1)

您错过了绝对路径的起始/

* * * * *  /usr/bin/php /var/www/htdocs/wordpress/text.php