MyBB Community Forums

Full Version: Remove Duplicate / Reset Reputation
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I have changed my reputation settings to allow users to only give each other users 1 reputation (disabled multiple reputation) and I've also stopped them giving reputation for posts.

My questions are:

1) Is there a way I can remove all duplicate reputation?
2) If not, is there an easy way I can just remove all reputation and put everyone back to 0?

Thanks in advance Smile
There won't be any duplicate ratings, myBB by default only allows users to rep another user once.

I dont know how to remove all rep, possibly try disabling then re-enabling your reputation system.
run below SQL queries to remove reputation points for all the users

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


see this guide if required : running SQL queries ...