I created a site using sites.google.com. Now I want to download it to publish. Is there any way that the site can be downloaded?
While you can get a hold of some basic content using HTTrack or equivalent, you don't need to download the website in order to publish it. Google Sites will publish the site for you, (instructions) from within the Google Sites editor.
The site can even use your own domain name if you have one. The instructions assume a personal Google account, there is a slightly different process for a G-Suite for Business Account.
Yes, you can download a complete site or just a bunch of pages with every separate file.
A windows application called HTTrack makes it possible to download whole site with all separate files.
- Download HTTrack from here.
- Open it and type the url or site domain to wich you want to copy.
- Choose the folder where you want to save it.
- And run the process, make sure you have stable internet connection.
- The process will be finish as it's total file size.
Source: Quora
While you can get a hold of some basic content using HTTrack or equivalent, you don't need to download the website in order to publish it. Google Sites will publish the site for you, (instructions) from within the Google Sites editor.
The site can even use your own domain name if you have one. The instructions assume a personal Google account, there is a slightly different process for a G-Suite for Business Account.
For unix people:
wget -e robots=off -m -k -K -E -rH -Dsites.google.com http://sites.google.com/a/domain/site/
Where the options recursively download the sites. Specifically, the wget
options stand for...
-e robots=off
: Ignore robots.txt instruction from site-m
: Turn on options suitable for mirroring-k
: After the download is complete, convert the links in the document to make them suitable for local viewing-K
: When converting a file, back up the original version with a.orig
suffix-E
: If a file of typeapplication/xhtml+xml
ortext/html
is downloaded and the URL does not end with the regexp\.[Hh][Tt][Mm][Ll]?
, this option will cause the suffix.html
to be appended to the local filename-r
: Turn on recursive retrieving.H
: Enable spanning across hosts when doing recursive retrieving.-Dsites.google.com
: Set the domain to be followed.
And if you're using windows, you could try getting wget
for Windows
HTTrack or any equivalent is really old techniques, and sometimes the website downloaded by these 3rd party software, won't work properly.
With a better approach, Google Takeout is the best option. I am here attaching few links, how to download google sites as .zip to your local computer. Youtube Video and Blog for reference
© 2022 - 2024 — McMap. All rights reserved.
curl
orwget
presumsbly. – Homage