Cron jobs doesn't seem to be working any idea why? I am positive that my cron job is setup properly.
M mariasandler64 New Member Messages 2 Reaction score 0 Points 0 Mar 11, 2011 #1 Cron jobs doesn't seem to be working any idea why? I am positive that my cron job is setup properly.
descalzo Grim Squeaker Community Support Messages 9,373 Reaction score 326 Points 83 Mar 11, 2011 #2 A command line like: Code: /usr/bin/php /home/igor/public_html/my_cron_job.php >> /home/igor/public_html/my_cron_log.txt 2>&1 will log all normal output ( ie echo ) and all error messages (even system errors). That way you can make sure the job is being run and any problems.
A command line like: Code: /usr/bin/php /home/igor/public_html/my_cron_job.php >> /home/igor/public_html/my_cron_log.txt 2>&1 will log all normal output ( ie echo ) and all error messages (even system errors). That way you can make sure the job is being run and any problems.