I am using CakePHP 1.3 and I was able to successfully able setup the cron job to run shells using the example that was given in the CakePHP Book.
*/5 * * * * /full/path/to/cakeshell myshell myparam -cli /usr/bin -console /cakes/1.2.x.x/cake/console -app /full/path/to/app >> /path/to/log/file.log
This outputs the results into a log file but I want to receive email when there is an error so I can try to resolve the problem. I tried the following with no luck.
- If I remove the >> /path/to/log/file.log then even the successful run is emailed.
- > /dev/null, my assumption was it would send a successful to /dev/null and error to email.
- 1> /dev/null, tried another variation of 2
Any help is appreciated.
Thanks