我必须在cpanel中使用cron作业,而我正在使用CodeIgniter。我的控制器路径是http://www.example.com/myfolder/application/controllers/cron/cron_controller.php如何在cron中调用我的控制器。
答案 0 :(得分:0)
在crontab中只需定义
0 * * * * php /controllers/cron/cron_controller.php
它会起作用,这里*是变量(时间)
Example of job definition:
.---------------- minute (0 - 59)
| .------------- hour (0 - 23)
| | .---------- day of month (1 - 31)
| | | .------- month (1 - 12) OR jan,feb,mar,apr ...
| | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
| | | | |
* * * * * user-name command to be executed
答案 1 :(得分:0)
当您尝试运行cron时,您正在从命令行运行,但您仍需要浏览索引。所以你的cron命令是:
* * * * * php index.php cron cron_controller
答案 2 :(得分:0)
这正在工作。只需在cron选项卡中键入
wget www.yourdomain.com/index.php/yourcontroller/yourfunction