What's new
Van's Air Force

Don't miss anything! Register now for full access to the definitive RV support community.

Kit Log

mykitlog on CD

Is there a way to get the html files of mykitlog.com/mine burned onto a CD so I have a remote and portable copy of my build site? I see I can make pdf files. But how can I get all the html files onto a CD? thanks
 
I would contact them before trying to download everything, most websites get angry if you try it; especially if you mess up and restart.

I know it can be done using "wget" on Linux, the program is available for Windows but I have never used it.

This could/should do it, but no guarantees.
Code:
wget \
--recursive \
--no-clobber \
--page-requisites \
--html-extension \
--convert-links \
--restrict-file-names=windows \
--domains mykitlog.com \
--no-parent \
http://www.mykitlog.com/users/category.php?user=YOURUSERNAMEHERE

Code:
The options are:
--recursive: download the entire Web site.
--domains mykitlog.com: don't follow links outside website.org.
--no-parent: don't follow links outside the directory tutorials/html/.
--page-requisites: get all the elements that compose the page (images, CSS and so on).
--html-extension: save files with the .html extension.
--convert-links: convert links so that they work locally, off-line.
--restrict-file-names=windows: modify filenames so that they will work in Windows as well.
--no-clobber: don't overwrite any existing files (used in case the download is interrupted and resumed).
 
Back
Top