Cron jobs in codeigniter

后端 未结 5 614
花落未央
花落未央 2020-12-10 07:16

I am trying to do a cron job with a site built in CodeIgniter - I\'ve got access to the CPanel cron feature can anyone suggest the best way to setup a cron job using CPanel?

5条回答
  •  情深已故
    2020-12-10 08:11

    Best way is to call from the command line in the cron job...

    php /path/to/index.php controller >> /dev/null
    

    You can run controllers via the command line in CI, see here.

提交回复
热议问题