linux - Run PHP crone multiple time in a timeframe -
i have php cron job , need run on 10 times in between 10pm 11pm possible in server
/usr/local/bin/php -q /home/geniusgr/public_html/cron.php
you can utilize cron:
*/6 22 * * * /usr/local/bin/php -q /home/geniusgr/public_html/cron.php
it run every 6 minutes @ 22 (10pm):
22.00 - 1st 22.06 - 2nd 22.12 - 3rd 22.18 - 4th 22.24 - 5th 22.30 - 6th 22.36 - 7th 22.42 - 8th 22.48 - 9th 22.54 - 10th
php linux cron
No comments:
Post a Comment