Cpanel cron job command syntax

I am trying to set a cron job on cpanel to run every minute all the time. in the team I wrote

php /home/hallsamc/public_html/reverse_booking.php

      

but it still doesn't execute the script. when i download the file from browser it works as expected but cron job doesn't work.

+3


source to share


1 answer


Try the following syntax and let me know.



php -q /home/hallsamc/public_html/reverse_booking.php

      

+2


source







All Articles