Cron 作业 - Dreamhost

Cron Job - Dreamhost

我目前使用 DreamHost 控制面板设置了一个 cron 作业。

这运行没有任何问题,我知道试图将输出保存到文件中。

我已经在控制面板中尝试了以下操作:

/usr/bin/php/test/carmun15/website/index.php > /usr/bin/php/home/test/website/index1.php 2>&1

有人知道怎么做吗?

谢谢

我认为您提供的示例中遗漏了一些空格,您还试图写入无法写入的位置。

我猜应该是这样的……

/usr/bin/php /home/carmun15/website/index.php > /home/carmun15/website/index1.php 2>&1

您需要检查路径并确保一切正确

/usr/bin/php - php

的路径

/home/carmun15/website/index.php - 你想要 运行

的脚本路径

/home/carmun15/website/index1.php - 日志文件的路径