MyBB Community Forums

Full Version: Query to make user owner
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

Whats the sql query I can use to make the user a admin/owner through mysql?

Thanks
This should do it.
UPDATE mybb_users SET usergroup = 4 WHERE uid = 1

Remember to replace mybb_ with your table prefix if you changed it and where it says uid = 1 you need to replace 1 with the user id that you need to change it.

Out of curiosity why not do this through the admin cp?
I've bought a community from someone and don't have admin access yet.

Thanks