MyBB Community Forums

Full Version: Reset Reputation
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Just merged a forum and all reputation data has been lost. The problem is that the number is still showing.

Example being user1 shows he has 20 reputation. You go to check the page and there is no info.

How can I reset the reputation?
Run this in phpMyAdmin, it will set all users reputation to 0:
UPDATE `mybb_users` SET `reputation` = '0';
Also,

TRUNCATE `mybb_reputation`;

to remove any that is remaining.