我正在尝试设置一个脚本在cron作业中运行,我希望它每天运行一次。我是cron工作的新手,到目前为止我看到的只是使用绝对路径,如:
http://example.com/path/to/file
这是我想在cpanel中执行的命令:
/ usr / bin / wget -O - -q -t 1 /home/account/invest/controllers/cron_controller.php
这会有用吗?或者是另一个比wget更好的命令?
答案 0 :(得分:1)
最好的命令是php /home/account/invest/controllers/cron_controller.php
。