CodeIgniter Cron Job on Shared Hosting?

前端 未结 4 714
暖寄归人
暖寄归人 2021-02-06 16:56

I am trying to learn how to do my first cron job using CodeIgniter. In the past, it seemed the only way to do this with CI was to use the wget command instead of

4条回答
  •  攒了一身酷
    2021-02-06 17:28

    If you are going to call it like a web browser, why not replace the cronjob command with:

    wget http://example.com/cronjob/
    

    instead of creating something new or simply

    curl --suppress http://example.com/cronjob/`
    

提交回复
热议问题