I\'m running a PHP script via cron using Wget, with the following command:
wget -O - -q -t 1 http://www.example.com/cron/run
The script wil
The default timeout is 900 second. You can specify different timeout.
-T seconds --timeout=seconds
The default is to retry 20 times. You can specify different tries.
-t number --tries=number
link: wget man document