Quantcast
Channel: phpBB.com
Viewing all articles
Browse latest Browse all 1619

[3.3.x] Support Forum • Re: PHP warnings when I search myself in permissions

$
0
0
Hi,

I know the topic is old but there was no solution and I had the same issue.

7 is "ROLE_USER_LIMITED" in phpbb_acl_roles. That seems to be left over in some changes. When you select your settings with your user_id, you should see group_id=7

Code:

SELECT *FROM phpbb_user_groupWHERE user_pending = 0 AND user_id = <your user_id>

You can delete 7 from phpbb_user_group

Code:

DELETE FROM phpbb_user_group WHERE user_id = <your user_id> AND group_id = 7;
If you want a revertable way, export the table row before deleting:

Code:

SELECT * FROM phpbb_user_group WHERE user_id = <your user_id>;
Regards
Harald

Statistics: Posted by harryk — Sun Feb 23, 2025 4:39 am



Viewing all articles
Browse latest Browse all 1619

Trending Articles