2011-05-08, 09:59 PM
2011-05-08, 10:04 PM
(2011-05-08, 09:59 PM)mxx Wrote: [ -> ]where do I change the reputation points?
What do you mean? The reputation power?
AdminCP > Users & Groups > Usergroups > (pick the preferred usergroup) > Users and Permissions. There you can set the "Points to Award/Take Away" per usergroup.
2011-05-08, 10:12 PM
If you want to set a user's reputation to a number of your own, you can run the following SQL query in phpMyAdmin:
Where X is the number of rep and Y is the uid of the user you want to edit.
UPDATE `mybb_users` SET `reputation` = 'X' WHERE uid = 'Y'
Where X is the number of rep and Y is the uid of the user you want to edit.
2011-05-08, 10:13 PM
thanks