Hello,
I've made a class that I want to have under a scheduled cronjob. I have added a job to the admin panel, when I click run manually I can see the results I expect in the database. I have waited 30 minutes on a cronjob that is sposed to execute on every single minute.
I've not seen any crontab information about crontab setup, so can you please guide me.
On the servers crontab file, I am setting up
Since I have reviewed command line calls for most of the files and was not able to find one that is CLI friendly, thus not able to identify which is the target file for the cronjob my assumption is that the XF cronjob feature is called only when there is an interaction with the website. Am I correct in assuming that?
If that is the case I will have to make a custom CLI interpreter that can deal with my requests but I would like to keep the admin section to manage the jobs, so I hope I am wrong.
I've made a class that I want to have under a scheduled cronjob. I have added a job to the admin panel, when I click run manually I can see the results I expect in the database. I have waited 30 minutes on a cronjob that is sposed to execute on every single minute.
I've not seen any crontab information about crontab setup, so can you please guide me.
On the servers crontab file, I am setting up
Code:
* * * * * php /path/to/file.php >> /dev/null 2>&1
Since I have reviewed command line calls for most of the files and was not able to find one that is CLI friendly, thus not able to identify which is the target file for the cronjob my assumption is that the XF cronjob feature is called only when there is an interaction with the website. Am I correct in assuming that?
If that is the case I will have to make a custom CLI interpreter that can deal with my requests but I would like to keep the admin section to manage the jobs, so I hope I am wrong.