MyBB Community Forums

Full Version: How can I give more reputation and make my self have it too
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
How do I give people loads of reputation if needed, and I want to make my self have loads of reputation as well.

How would I do this,
Thank you
(2012-06-29, 11:47 AM)Seanfromleeds Wrote: [ -> ]How do I give people loads of reputation if needed,
Through phpMyAdmin. You've to run a sql query each time when going to give rep points.

(2012-06-29, 11:47 AM)Seanfromleeds Wrote: [ -> ]and I want to make my self have loads of reputation as well.
Why yourself? That's completely opposite to what rep stands for.
So It would say my profile & rep:1000 for example.

Does it take awhile to do this so I could give loads of rep at once if needed
I agree with Yaldaram.

However, this is what you need to run:

INSERT INTO `mybb_reputation` VALUES (NULL, 'a', 'b', 'c', 'd', 'e', 'f');

Replace:

a = Uid of the user who is receiving the reputation
b = Uid of the user who is giving it
c = Pid of the post you want to give the reputation (0 for normal reputation)
d = Amount of points
e = UNIX timestamp
f = Reputation comment
(2012-06-29, 04:32 PM)Seanfromleeds Wrote: [ -> ]Does it take awhile to do this so I could give loads of rep at once if needed

No, it just takes couple of seconds.
please can someone tell me where to go to do this please?
To run sql queries, follow this guide: http://community.mybb.com/thread-44380.html
I entered: INSERT INTO mybb_reputation VALUES (NULL, '1', '2', '0', '500', '1340991071', 'thank you');

Into the SQL box that came up then I clicked go, Is that correct
Yes - that is correct Smile
I keep clicking Go and its not moving. do I need to select anything at the bottom
Pages: 1 2