Topic: freenet: static html snapshot of punbb

hi all.

i have a punbb forum that i would like to periodically convert to static html so i can put it on freenet.  i'm about to start writing a module to do this for me but at the moment i'm wondering about the best way to tackle it.  any tips welcome.

thanks.

Re: freenet: static html snapshot of punbb

Personally, I'd just make requests to the pages you need with file_get_contents() or so and save them.

3

Re: freenet: static html snapshot of punbb

Make a copy of the admin_prune script and use that as a base for writing the archiver. That was my base idea for a future archiving project. big_smile The functionality is already in that script for searching topics 0> days old, and adapting it to output to file rather than delete the topics should be fairly straight forward. You could create a simple cover all html dumper and date dependant archiver in one script. smile

Re: freenet: static html snapshot of punbb

good ideas.  thanks!