A cron job that will never execute

If you’re still looking for something robust even in the far future, try https://stackoverflow.com/a/13938099/1601531, where I suggest the use of February 31st in crontab entries which are never intended to execute. 0 0 5 31 2 ?

Cron Dispatcher CakePHP 2.0

In case anyone else is interested, In the new CakePHP 2.0.5, you will an index.php in webroot folder: Copy this file and name it cron_dispatcher.php, and place it into the same directory (webroot) You will find this code at the very bottom: $Dispatcher = new Dispatcher(); $Dispatcher->dispatch(new CakeRequest(), new CakeResponse(array(‘charset’ => Configure::read(‘App.encoding’)))); change the bottom … Read more

Running Cron Tasks on Heroku

I’m not entirely sure what you mean by “run my own cron tasks manually”. For cron specifically, you need access to crontab, which they can control, as they’re their servers. If you have another way of doing it, it would probably be fine, but bear in mind that your app is not tied to a … Read more