让 cronjob 以 PHP5 的方式运行 PHP 脚本
我正在使用 1and1 托管并尝试使用 PHP5 运行 cronjob。由于某种原因,尽管站点上的全局 PHP 版本是 PHP5,但 cron 正在使用 PHP4。
该脚本在浏览器中运行良好,但在 SSH 和直接运行文件时出现错误。我知道它使用 PHP4 的原因是因为它说“X-Powered-By: PHP/4.4.9”
cron 看起来像这样:
* * * * * /usr/bin/php /path/to/file.php
我认为它一定是与 php 路径相关的东西。有什么想法吗?
I am using 1and1 hosting and trying to run a cronjob using PHP5. For some reason, the cron is using PHP4.. even though the global PHP version on site is PHP5.
The script works fine in a browser, but gives me errors when SSHing and directly running the file. The reason I know it's using PHP4 is because it says "X-Powered-By: PHP/4.4.9"
The cron looks like this:
* * * * * /usr/bin/php /path/to/file.php
I'm thinking it's gotta be something related to the php path. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试
/usr/bin/php5
吗?这是 PHP 5 的常见位置。
Try
/usr/bin/php5
?That's a common location for PHP 5.
另一种方法可能是执行
* * * * * php /path/to/file.php5
我不使用开头行来运行 php。或许这就是马虎?但请尝试使用 .php5 扩展名重命名该文件,并在 cron 管理器中的路径之前添加“php”。
Another way might be to do
* * * * * php /path/to/file.php5
I don't use the opening line to run php. Maybe this is sloppy? But try renaming the file with a .php5 extension and just adding "php " before the path in the cron manager.
你可以尝试
you can try