MyBB Community Forums

Full Version: Check who's rating?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible, to check which users that have rated threads?
Nope, i'm afraid that is not possible.
Ah, that sucks.
I hate when users are abusing the ratings, by one starring every thread.
There isn't a plugin for it but you can check that in your database with phpMyAdmin

Check who made the most ratings:
SELECT uid, COUNT(tid) AS ratings FROM `mybb_threadratings` GROUP BY uid ORDER BY ratings

To know which user it is: /member.php?action=profile&uid=<HERE THE UID>
I've released a plugin that do exactly like this: http://yaldaram.com/showthread.php?tid=331
You may select which usergroup can see this list and in which forum. Wink
The first method is free, though!
(2011-03-19, 04:43 PM)Dimon Wrote: [ -> ]The first method is free, though!

But in that method only admin have access to view the list, in my plugin you may specify usegroups and in selective forums Wink
OP here just want to check who's abusing the Thread ratings Smile
I think the OP can pick for himself which option is the best.
I think so too Uncontrol, thank you ^_^