2
got it to work by permission: user (BTW: no instructions came with the updated version)
Also did a manual sql setup :
Table structure for table `bb_forum_group_access`
# hack for group access
CREATE TABLE bb_forum_group_access (
forum_id int(4) unsigned NOT NULL default '0',
group_id int(5) unsigned NOT NULL default '0',
can_post tinyint(1) NOT NULL default '0',
PRIMARY KEY (forum_id,group_id)
) TYPE=MyISAM;
Do I have to manually set up group permission? cause it is not allowing it the the admin private forums section (User works great!, Group does not)
Thanks in advance