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
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
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