MyBB Community Forums

Full Version: Clean Boards and Post Counts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there anyway to basically clean out the forums and make all the post counts start back to 0?
TRUNCATE `mybb_posts`;
TRUNCATE `mybb_threads`;

Then run the recount and rebuild processes in the ACP.
oh forgot about the rep system...is there a way I can restart that back to 0 as well
TRUNCATE `mybb_reputation`;
UPDATE `mybb_users` SET `reputation` = '0';
thanks Big Grin
Why would you want to do that?