- Open crontab in your terminal:
EDITOR=gedit crontab -e
- Add your cron settings at the end of your file (we are setting cron to be execute in every 2 minute in our example):
*/2 * * * * /usr/bin/php -q /path/to/phpfile.php > /dev/null
- Save your cron file and run:
sudo service cron restart