
CronTabManager
Run scripts on a schedule automatically


Via the controller script:
Create a snippet that will run automatically and attach it to a cron job:
<?php
echo "Test" . PHP_EOL;
return 0; # Error
return 1; # SuccessFor the job to complete successfully, the snippet must return return 1;; otherwise the cron job will be marked as failed.