6
I've been having the same issue and fixed (fudged) it with the following query:-
INSERT INTO `xoops_group_permission` ( `gperm_id` , `gperm_groupid` , `gperm_itemid` , `gperm_modid` , `gperm_name` )
VALUES (
'', '3', '2', '1', 'module_read'
);
-- I haven't tracked down where this should have been done as yet. I tracked it through group_perm_handler etc.
I'll try to see where this info needs to be set. In my install (nothing added), groupid=3 is Anonymous Users, and the profile module is modid=2.
Hope this helps.
Barry