MyBB Community Forums

Full Version: Permissions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I wanted to backup database but i have problem with permissions. I get message: You do not have permission to access this part of the administration control panel.
When I started ti use mybb, I do migration from phpbb2. I read some similar topics, but I can't found solution.
I tried to put in config.php
$config['super_admins'] = '3,7';
3 and 7 are UID of admins
but I get same message again.
Then I tried to do this in phpmyadmin:
DELETE FROM mybb_adminoptions WHERE uid=3
but i get message

SQL query:

DELETE FROM mybb_adminoptions WHERE uid =3

MySQL said: Documentation
#1146 - Table 'bosniaw_proba.mybb_adminoptions' doesn't exist

Can somebody help me?
NoPr0blem Wrote:I tried to put in config.php
$config['super_admins'] = '3,7';
3 and 7 are UID of admins
but I get same message again.
You sure it's 3 and 7?
Because typically, the super admin has a UID of 1.

NoPr0blem Wrote:Then I tried to do this in phpmyadmin:
DELETE FROM mybb_adminoptions WHERE uid=3
but i get message

SQL query:

DELETE FROM mybb_adminoptions WHERE uid =3

MySQL said: Documentation
#1146 - Table 'bosniaw_proba.mybb_adminoptions' doesn't exist
It pretty much says what it means, the table you specified isn't valid, because it doesn't exist.
Chances are, you're using a table prefix different to "mybb_" so just replace "mybb_" with your table prefix.
ZiNga BuRgA thank you. It was different table prefix. I didn't think about it. It works now.