Cron Job **Help!**

netanel

Verified User
Joined
Oct 28, 2009
Messages
7
Hello,

I have a PHP file that i want to run it every day at 18:00 o'clock.

I do not know what I have set for it.
Code:
Minute: *                          (0-59)
Hour: *                             (0-23)
Day of Month: *                 (1-31)
Month: *                           (1-12)
Day of Week: *                  (0-7) [0 or 7 = Sunday]
Command: /home/MyName/file.php                    [Prevent Email]
Help me please ...
Thanks!
 
you need the full path to php.........

ie. /usr/bin/php -q /home/MyName/file.php

do which php to find your php path
 
Gather you mean the server clock? if so, have a look here

Actually, I think you mean the cron

Set hour to 18
Set minute to 0
 
Last edited:
Back
Top