2
Well I seem to have solved it and no errors yet. I edited install/makedata.php like this
$tables = array();
// data for table 'groups_users_link'
$dbm->insert('groups_users_link', " VALUES (0, ".$gruops['XOOPS_GROUP_ADMIN'].", 1)");
$dbm->insert('groups_users_link', " VALUES (0, ".$gruops['XOOPS_GROUP_USERS'].", 1)");
[color=990000]$dbm->insert('groups_users_link', " VALUES (0, ".$gruops['XOOPS_GROUP_ANONYMOUS'].", 1)");[/color]
I added the line in red. I had to reinstall to make it work but I suppose it can be done by editing the database which I don't have the skills to do. Maybe someone can post the insert method for the database.
Please advise if this will cause a problem with other modules or just generally.