How do I export the complete forum as static html pages?

My discourse-forum is going to be shut down, as our org is soon being shutdown, but I’d like to keep a static version of the public porting of our forum.

How can I do that?

I tried to simply pull a copy using wget, but that didn’t get a usable result.

Thanx
/Henning

1 Like
6 Likes

After reviewing til link Trash linked to, plus link in that thread, I found a solution:

wget --wait=1 --recursive --page-requisites --user-agent "Googlebot" https:/site.com

Without the --wait=1 pulling my site resulted in “TOO MANY REQUESTS”, but a delay solved that problem.

8 Likes

We used this with quiet some success then!

wget --adjust-extension --mirror --page-requisites --convert-links   --recursive  --user-agent "Googlebot" https://forum.lescommuns.org

Thanks @wangerin for the beginning, I completed with the SO.

And then you see the website like google, but well :slight_smile:

2 Likes