让 cronjob 以 PHP5 的方式运行 PHP 脚本

发布于 2024-12-03 18:53:09 字数 302 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

单身情人 2024-12-10 18:53:09

尝试 /usr/bin/php5 吗?

这是 PHP 5 的常见位置。

Try /usr/bin/php5 ?

That's a common location for PHP 5.

给我一枪 2024-12-10 18:53:09

另一种方法可能是执行

* * * * * 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.

九局 2024-12-10 18:53:09

你可以尝试

* * * * * php -q  /path/to/file.php

you can try

* * * * * php -q  /path/to/file.php
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文