MyBB Community Forums

Full Version: Rep Reset
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey everyone I was wondering how could I make a global Rep reset?
Delete /reputation.php and reupload a new one.

I'm sure that should work.
No. That's not what the OP is asking. He's asking how to delete all the reputations given out on his/her forum.
But wouldn't that delete the reps (resetting)?
(2010-09-06, 08:37 PM)The Elite Wrote: [ -> ]But wouldn't that delete the reps (resetting)?

Yes, it sounds like that's what they want to do, reset them.

TRUNCATE `mybb_reputation`;
UPDATE `mybb_users` SET `reputation` = '0';

That will delete all reps and reset everybody's counts.
Isn't there a reputation recount?
No, rep isn't really something that's going to get out of sync. And a recount wouldn't reset it anyway.
Thanks Matt it worked Big Grin