Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is crontab not executing my PHP script?

Tags:

I have built one php file to check some result, so that I need to setup a cronjob.

I set one to run every 30 minute, so that the results will be send. However, I don't know why my crontab did not run after every 30 minute.

Here is how I set the crontab:

*/30 * * * * php /var/www/html/result.php

I have confirmed my file directory is correct. What I not sure is about the timing part: isn't it possible to use */30 * * * * or 30 * * * * ? I set */30 * * * * and did not work.

like image 312
user941885 Avatar asked Sep 13 '11 06:09

user941885


2 Answers

Given

*/30 * * * * php /var/www/html/result.php

There are multiple possibilities why it is not working:

  1. First of all it is important to check if the simple execution of php /var/www/html/result.php. This is required. But unfortunately, accomplishing this does not mean that the problem is solved.

  2. The path of the php binary has to be added.

    */30 * * * * php /var/www/html/result.php
    

    to be changed to

    */30 * * * * /usr/bin/php /var/www/html/result.php
    

    or whatever coming from which php.

  3. Check the permission of the script to the user running the crontab.

    Give execution permission to the file: chmod +x file. And make sure the crontab is launched by a user having rights to execute the script. Also check if the user can access the directory in which the file is located.

  4. To be safer, you can also add the php path in the top of the script, such as:

    #!/usr/bin/php -q
    <?php
    
     ...
    
    ?>
    
  5. Make sure the user has rights to use crontab. Check if he is in the /etc/cron.d/deny file. Also, make a basic test to see if it is a crontanb or php problem.

    * * * * * touch /tmp/hello
    
  6. Output the result of the script to a log file, as William Niu suggested.

    */30 * * * * /usr/bin/php /var/www/html/result.php > /tmp/result
    
  7. Use the -f option to execute the script:

    */30 * * * * /usr/bin/php -f /var/www/html/result.php > /tmp/result
    
  8. Make sure the format in crontab is correct. You can do so for example using the site Crontab.guru.


To sum up, there are many possible reasons. One of them should solve the problem.

like image 69
fedorqui 'SO stop harming' Avatar answered Sep 29 '22 11:09

fedorqui 'SO stop harming'


It may be because php is not in the path. crontab has a very minimal path. So, include the full path for your php program.

you can test your cron commands by piping the output to a file, e.g.

*/30 * * * * php /var/www/html/result.php > /tmp/result.log

From this reference page, under "Crontab Environment":

cron invokes the command from the user’s HOME directory with the shell, (/usr/bin/sh). cron supplies a default environment for every shell, defining:

HOME=user’s-home-directory 
LOGNAME=user’s-login-id
PATH=/usr/bin:/usr/sbin:. 
SHELL=/usr/bin/sh

Also, /30 syntax might not be supported by all platforms, so, try to change it to 0,30 instead.

like image 35
William Niu Avatar answered Sep 29 '22 13:09

William Niu