I have created following command line to run cron job after every 2minutes
2 * * * * php -f /home/u260451427/public_html/cron/cron_sms_sending_queue.php
my sever configuration look something like that
but its not working.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
2 * * * * <command>will run every 2nd minute past every hour.From ‘man 5 cron’:
Therefore your crontab entry should be
*/2 * * * * <command>