HTTrack Website Copier
Free software offline browser - FORUM
Subject: Re: some site wont download correctly
Author: William Roeder
Date: 04/17/2010 21:02
 
> (winhttrack -qir3C1%Pns0%s%uN0%I0H0%kf2A25000%f#f -F
> "Mozilla/4.05 [fr] (Win98; I)" -%l "da, en, *"
> <http://sensualsurprises.com/> -O1 "C:Mine
> web-stedersensualsurprises" +*.css +*.js
> -ad.doubleclick.net/* -mime:application/foobar
> +*.gif +*.jpg +*.png +*.tif +*.bmp +*.zip +*.tar
> +*.tgz +*.gz +*.rar +*.z +*.exe +*.mov +*.mpg
> +*.mpeg +*.avi +*.asf +*.mp3 +*.mp2 +*.rm +*.wav
> +*.vob +*.qt +*.vid +*.ac3 +*.wma +*.wmv +scripts/*
> )
You should always run with no error pages (-x) so you know where the mirror
ends.

Since you used the near flag (-n) all those +*.gif +*.jpg ... are useless. one
or the other.

Since you used the no robots flag (-s0) the +scripts/* flag is redundant. You
probably don't want the other pages from robots.txt so use the no robots with
just the +*/scripts/*

As for why the enlarge image doesn't appear. The image is download, and the
web page is properly linked to it. It is the embedded javascript that
suppresses it:

The link is in the form img id="Viewer"
src="../images/buttons/enlargedview.gif" ...
If you manually delete the id="Viewer" it works.

Each page also contains this javascript which doesn't find what it's looking
for and hides the button.
var oViewer = document.getElementById("Viewer");
// Cycle Through the Array to find a match
for (var i = 0; i < EnlargedimgArray.length; i++)
{
    // Compare the String against the value in the Array
    nExists = oImage.src.indexOf(EnlargedimgArray[i]) != -1;
    if (nExists == true){
        oViewer.style.display="block";
        EnlargedImgFileName = EnlargedimgArray[i];
        return;
    }
}
oViewer.style.display="none";

 
Reply Create subthread


All articles

Subject Author Date
some site wont download correctly

04/15/2010 18:50
Re: some site wont download correctly

04/16/2010 20:43
Re: some site wont download correctly

04/16/2010 22:02
Re: some site wont download correctly

04/16/2010 23:01
Re: some site wont download correctly

04/17/2010 13:50
Re: some site wont download correctly

04/17/2010 15:01
Re: some site wont download correctly

04/17/2010 15:32
Re: some site wont download correctly

04/17/2010 16:40
Re: some site wont download correctly

04/17/2010 17:00
Re: some site wont download correctly

04/17/2010 21:02
Re: some site wont download correctly

04/17/2010 21:40
Re: some site wont download correctly

04/18/2010 02:16
Re: some site wont download correctly

04/18/2010 11:43
Re: some site wont download correctly

04/18/2010 16:09
Re: some site wont download correctly

04/18/2010 17:21




6

Created with FORUM 2.0.11