Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am just trying to run a PHP script using a cron job within CPanel - is this the correct syntax:

/usr/bin/php -q /home/username/public_html/cron/cron.php >/dev/null

I am not getting any email notifications stating a cron has been completed, do I need to do anything specific with the PHP file?

share|improve this question

3 Answers

up vote 8 down vote accepted

In crontab system :

  • /usr/bin/php is php binary path (different in some systems ex: freebsd /usr/local/bin/php, linux: /usr/bin/php)
  • /home/username/public_html/cron/cron.php should be your php script path
  • /dev/null should be cron output , ex: /home/username/stdoutx.txt

So you can monitor your cron by viewing cron output /home/username/stdoutx.txt

share|improve this answer
I am using this now and it works but I do not get any email notification any ideas why not? php /home/username/public_html/cron/cron.php note I had to put the following line at the top of the PHP script #! /usr/bin/php -q – Zabs Sep 7 '11 at 12:04
If u want cronjob send emails for u, u must use php mail(), i dont thinks cronjob have automatic mail system, unless u using shell scripting or php. – Somy A Sep 8 '11 at 13:26

I used this command to activate cron job for this.

/usr/bin/php -q /home/username/public_html/yourfilename.php

on godaddy server, and its working fine.

share|improve this answer
Thanks Mr. Pankaj kaka. – Hearaman Dec 14 '12 at 12:56

>/dev/null stops cron from sending mails.

actually to my mind it's better to make php script itself to care about it's logging rather than just outputting something to cron

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.