MyBB Community Forums

Full Version: I want know
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
can i know how to change user to be admin in cpanel
1) Wrong section
2) Unless you mean through the database directly, you don't do it through Cpanel.
3) See the wiki entry on this. http://wiki.mybb.com/index.php/Admin_CP_Users_Groups
Simply run the following query in phpMyAdmin;
UPDATE `mybb_users` SET `usergroup` = '4' WHERE `uid` = 'X';
Where X is the UserID of that user.
(2012-05-24, 07:25 AM)Yaldaram Wrote: [ -> ]Simply run the following query in phpMyAdmin;
UPDATE `mybb_users` SET `usergroup` = '4' WHERE `uid` = 'X';
Where X is the UserID of that user.

thank you