I once ran a home-made forum system for a small group of online deathmatch players. These forums have long since been shut down, and are currently offline. What I want to do is create static HTML files that contain all of the data for the entire system, in the interest of having an online archive that the former users could search.
I have control over all of the original data. This would include:
- Images
- Profiles
- Forum Threads
- Database
- PHP Scripts
Basically, I want to take the database out of the equation, so that I don't have to waste the resources to keep it alive. (and also because this was a home-made forum solution, I'm sure it's not very optimized)
Is this a feasible goal, or should I just keep the forums the way they are, and not worry about the overhead?
If it is possible (and remotely feasible), can I get a few suggestions about how to proceed?