To address a couple of issues raised in this thread:
Wiki backup: The commands to back up and restore the Wiki can be found here.
Dropping the Wiki database: Someone speculated that you could "drop the db from postgres, disable wiki and re-enable it in the Server app. Possibly that reinitializes the db." It does not. It just sits there and complains that the DB is missing. What I haven't tried is doing pg_dump on, say, a virgin 10.7 server and then restoring that over the corrupt DB. I have a hunch that the DB has host-specific parameters baked in and this would not work, but I could be wrong. Moral of the story: Back up your DB early and often. Related moral: Snapshot your VMs.
Unhide users: Someone asked how to unhide people. I haven't tried this, but I noticed that in /etc/collabd/collabd-search.plist, there's this bit:
<key>ignoredEntityExpressions</key>
<array>
<dict>
<key>type</key>
<string>com.apple.entity.FileData</string>
</dict>
<dict>
<key>isHidden</key>
<real>1</real>
</dict>
<dict>
<key>isDeleted</key>
<real>1</real>
</dict>
<dict>
<key>isPermanentlyDeleted</key>
<real>1</real>
</dict>
</array>
It could be that if you edited the value for isHidden to be 0, it would show hidden pages in a search (assuming you knew what you were searching for) and then you could open and unhide them. Maybe not, though - someone should try it.