Hello;
How can I execute PHP file to be excuted in cron task ?
regards
Hello;
How can I execute PHP file to be excuted in cron task ?
regards
recommended way
php -f /home/yoruusername/file.php
other ways, but totally unrecommended:
wget --spider http://www.yoursite.com/file.php
or...this is a funny one, i had a client doing it like this:
lynx http://www.domain.com/cron/dayly_cron.php
)