(E-Mail Removed) wrote:
> Hi - I am having a problem with wget v1.10.2 when I run the command:
>
> wget -t 100 -T 10 -i files.txt
>
> On older versions (eg v1.6), this will keep retrying and will "resume"
> the download from where it left off, EVERY time.
From man page:
--tries=number
Set number of retries to number. Specify 0 or inf for infinite
retrying. The default is to retry 20 times, with the
exception of
fatal errors like ``connection refused'' or ``not found'' (404),
which are not retried.
> On the latest wget version, this will do the retry properly if the
> connection times-out in the middle of receiving bytes (read-error),
> however, if there is a timeout when receiving the header response from
> the server, wget will start all over again and will not resume.
>
> Here is a sample of the error:
> -------------------
> HTTP request sent, awaiting response... Read error (Connection timed
> out) in headers.
> ------------------
Try with the -S option, so you see the header you get, could be a 404 or
something that would cause a legal skip, there are servers that gives
quite bad errors at high load.
--
//Aho