I'm running a CentOS 5 server, and trying to schedule a job which runs a php file every day at the same time, I've added a new file to the directory
/etc/cron.d/
called get_files
The get_files
file contains the following:
03 6 * * * php /var/www/html/get-info.php
However, the above job doesn't seem to get run. What am I doing wrong?