How to set cron job url for codeigniter?

前端 未结 13 1827
一个人的身影
一个人的身影 2020-11-30 23:17

I am using Codeigniter for my website. I have to use cron job to run one of controller function. I am using route in website. And also I am not using index.php in url.

13条回答
  •  不思量自难忘°
    2020-11-30 23:41

    I have done it as

     00 09-18 * * 1-5 /usr/bin/php /var/www/html/app/index.php crontest
    

    crontest is the name of the controller which also uses a model to pull data from the database and send mail periodically (between 9 AM to 6 PM on Monday to Friday every week)

    I just viewed this page which explains very detail with example. Hope this will be useful to others as well.

提交回复
热议问题