【发布时间】:2018-11-03 00:37:33
【问题描述】:
实际上我想在 HostGator cpanel 上创建的应用程序中运行 cron 作业,但我的 url 无法正常工作。
wget www.luvkushfinserve.com/Blog/auto_cron
【问题讨论】:
标签: php codeigniter cron
实际上我想在 HostGator cpanel 上创建的应用程序中运行 cron 作业,但我的 url 无法正常工作。
wget www.luvkushfinserve.com/Blog/auto_cron
【问题讨论】:
标签: php codeigniter cron
如果您想每天每 5 分钟运行一次,请添加 -
* /5 * * * wget www.luvkushfinserve.com/Blog/auto_cron
【讨论】:
使用
php index.php welcome show
作为 crontab 中的命令。例如:
0 * * * * php /home/username/index.php welcome show
来源(2.2.0 版)http://www.codeigniter.com/userguide2/general/cli.html
来源(版本 3.*)http://www.codeigniter.com/user_guide/general/cli.html
【讨论】: