Cronjob调用php脚本失败

时间:2015-02-17 10:46:54

标签: php include crontab require

我想每2个小时运行一个php脚本。 php脚本在他的代码中包含了und require

我的系统是一个ubuntu服务器

所以设置我使用的cron

env EDITOR=nano crontab -e

在那里我写了像cronjob ...(每5分钟进行一次测试)

*/5 * * * * wget http://www.domain.de/cron.php?id=ID&pw=PW

并尝试了

*/5 * * * * wget http://www.domain.de/cron.php?id=ID&pw=PW > /dev/null 2>&1

以上我在plesk中使用但是在这里我只得到一个由putty连接的shell

如果文件写在网站空间的主目录中,文本在Zutritt verweigert内(访问被拒绝)

我在目录

中没有htaccess或类似内容

1 个答案:

答案 0 :(得分:0)

您应该在网址周围添加引号:

*/5 * * * * wget "http://www.domain.de/cron.php?id=ID&pw=PW"

它们是必需的,因此&符号不会被删除。