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 all
SELECT *
FROM phpbb_user_group
WHERE user_pending = 0 AND user_id = <your user_id>
You can delete 7 from phpbb_user_group
Code: Select all
DELETE FROM phpbb_user_group WHERE user_id = <your user_id> AND group_id = 7;
Code: Select all
SELECT * FROM phpbb_user_group WHERE user_id = <your user_id>;
Harald