We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

phalcon cron

How to use phalcon cron. I wish to set time to run automatically sent email to users in phalcon. How can I? Please guide to me.

Thanks



58.4k
Accepted
answer

Hey man

It is very easy if use linux, for example if script file send mail https://github.com/phalcon/forum/blob/master/scripts/send-notifications.php

In terminal you running command line

    crontab -e 

Then you inserting

    0 23 * * * cd /root/web/.... && php send-notifications.php

here 0 and 23 correcspoding minute and hous and * running any where

# For details see man 4 crontabs
# Example of job definition:
# .---------------- minute (0 - 59)
# |  .------------- hour (0 - 23)
# |  |  .---------- day of month (1 - 31)
# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# |  |  |  |  |
# *  *  *  *  * user-name  command to be executed


5.7k

Sorry, I'm not familiar with linux. I see this one https://packagist.org/packages/temafey/phalcon-cron and how to continue. Sorry for distrub you all.



7.9k

you can use phalcon CLI apps to manage your cron or cli based task : https://docs.phalcon.io/en/latest/reference/cli.html

then run set crontab as @duythien post