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
You can delete 7 from phpbb_user_group
If you want a revertable way, export the table row before deleting:Regards
Harald
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;
Code:
SELECT * FROM phpbb_user_group WHERE user_id = <your user_id>;
Harald
Statistics: Posted by harryk — Sun Feb 23, 2025 4:39 am