How to set cron job url for codeigniter?

前端 未结 13 1844
一个人的身影
一个人的身影 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:30

    If you are using the Hostgator(or any other Linux server) then try this one.

    /opt/cpanel/ea-php72/root/usr/bin/php /YOUR_HOME_DIRECTORY/YOUR_USERNAME/public_html/marketing/index.php welcome emailcampaign 1
    

    for example for me its

    /opt/cpanel/ea-php72/root/usr/bin/php /home3/adnan/public_html/index.php welcome emailcampaign 101
    

    where

    welcome is the controller name
    emailcampaign is the function name of welcome controller
    101 = First argument of url.  
    

提交回复
热议问题