Web Hosting Talk







View Full Version : Cron Job


HostGalaxy
10-05-2003, 08:50 PM
I wonder what is the commend to run a php file.
The file that I want to run is http://www.gamerzonline.net/forum/mre/gonline-sig.php
how would you do that
I wan to run this file every fifteen mins.

rghf
10-05-2003, 08:55 PM
There is a command line php so you could edit you crontab and do

*/5 * * * * php /path/to/gonline-sig.php

or if you actually want to run the url

*/5 * * * * lynx http://www.gamerzonline.net/forum/mre/gonline-sig.php

Rgds

Rus

HostGalaxy
10-05-2003, 08:59 PM
Thanks a bunch:D