CRON job

morpheusexegis

New Member
Messages
1
Reaction score
0
Points
0
i need to run the file called turn.php once every hour ... i cant seem to be able to write up a command for that .. any help would be apprecieated....

thanks in advance
 

Salvatos

Member
Prime Account
Messages
562
Reaction score
1
Points
18
Standard: select Every Hour and write this command:
php -q /home/your_username/folder/file.php
"-q" prevents it from sending you a result e-mail everytime. Change your_username to your username and then complete the file path (you may want to put it in /user/etc/)

Advanced:
Command: php -q /home/your_username/folder/file.php
Time: 0 * * * *
Same details as above
 
Top