| > I am trying to download a site that I built on tripod.
> When I try there are multiple errors. The site i am trying
> to download is americanluxurycoach.tripod.com
I recently had to capture a couple of Tripod websites recently... and yuck..
they are horrible to do, because of a lot of javascript.
You haven't specified what errors you are getting, but I'm guessing that your
mirrored version doesn't show any graphics?
I found I actually had to modify the pages after they were downloaded by doing
the following. Find this line:
document.write('<Base href="' + window.location.protocol + '//' +
window.location.host + dir + '/">');
And prefix it with: //
So it becomes: //document.write(...
| |