Cron question

mumbhaki

New Member
Messages
24
Reaction score
0
Points
0
im new to crons, kindly check my syntax in advanced(unix style)

Code:
0 0 1 * 0 /usr/bin/wget -o /dev/null -O /dev/null http://mumbhaki.x10hosting.com/somescript.php

what i want is to run somescript.php every 1st day of every month
 
Last edited:

kajasweb

New Member
Messages
1,723
Reaction score
0
Points
0
Just use the following command

Code:
/usr/bin/wget -O - -q http://yoursiteurl/cron_job.php
 
Top