Downloading a HTTPS website and all of its contents for offline viewing in Chrome and IE9?

26,443

Solution 1

Wget does indeed have a lot of options, but I find the -m option is very suitable to grab the data from a single site.

 wget -m https://www.whichever.info/

Solution 2

  • PC Magazine has a utility called SiteSnagger (figure 1) that provides an easy-to-use GUI program that lets you download a site. It has various options (figure 2) that let you control what and how much to download. I used it numerous times to mirror/leech interesting sites back in the day—ah, those halcyon days when websites were simple :-).

    They started charging for their utilities a few years ago, but they were free for years, so it’s quite available.

    Figure 1: SiteSnagger main interface

    enter image description here

    Figure 2: SiteSnagger options dialog

    enter image description here


  • You can also use HTTrack. It has even more options to specify exactly what you want to retreive and definitely works in Windows 7.

    Figure 3: HTTrack main interface

    enter image description here

    Figure 4: HTTrack options dialog

    enter image description here

Solution 3

You can use HTTrack to download an entire site to a local folder for offline viewing.

Share:
26,443

Related videos on Youtube

verve
Author by

verve

...

Updated on September 18, 2022

Comments

  • verve
    verve almost 2 years

    Is there a way to download a HTTPS site and all the contents in it for offline viewing? I need to save an educational site to browse offline. It's got videos, links etcetera. I want it to work in Chrome and IE 9. The simpler the app the better.

    Freeware or paidware.

    Need something simple like Websuction and I find wget too complicated to use.

    Win 7 Pro.

    • tumchaaditya
      tumchaaditya almost 12 years
      If its just one site, also try trial version of IDM...its grabber is pretty powerful.
    • verve
      verve almost 12 years
      @tumchaaditya: Link me?
    • tumchaaditya
      tumchaaditya almost 12 years
      internetdownloadmanager.com/download.html mind that it is trial version..
    • verve
      verve almost 12 years
      @tumchaaditya: have you used it yourself?
    • tumchaaditya
      tumchaaditya almost 12 years
      Yes. on HTTP..but should be same for HTTPS....its just protocol...the pages still are html, jsp, php... Only thing is it will only download openly browsable content(I am not sure whether this will work for sites which require login)
  • verve
    verve almost 12 years
    I fing wget too complicated.
  • radex
    radex almost 12 years
    Are you sure you find calling a program with two parameters too complicated?
  • verve
    verve almost 12 years
    I don't get the whole command line thing. Will it download videos too?
  • verve
    verve almost 12 years
    Will it work in Win 7?
  • Synetech
    Synetech almost 12 years
    Of course, it’s not a fancy, driver or anything; it’s just a basic Windows program. The “fanciest” thing about it is that it uses sockets to access the Internet, but again, it just uses normal Windows sockets, not fancy, tunneling or anything.
  • peter
    peter almost 10 years
    The -k option is also great if the site you're downloading uses relative links.