| > (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";
| |