Linux - Execute php script every 30 minutes, Cron job for every 30 minutes
Execute php script every 30 minutes
Execute a PHP script every 30 minutes using crontab
0,30 * * * * php -q /address/to/script.php
Just put this line in a file that resides in your /etc/cron.d/ folder, and you're set. The script.php file will execute once for every 30 minutes.
The topic on Linux - Execute php script every 30 minutes is posted by - Malu
Hope you have enjoyed, Linux - Execute php script every 30 minutesThanks for your time