croft - Did you change your cookie settings as instructed in the install file?
mbowers - If your news forum is private, then the posts should only show up for people who have permission to view them. If you want to exclude the forum all together though, you can look in your myvbindex.php file for:
PHP Code:
$forums=$DB_site->query('SELECT forumid,parentid,displayorder FROM forum WHERE displayorder<>0 ORDER BY parentid,displayorder');
Replace that with:
PHP Code:
$forums=$DB_site->query('SELECT forumid,parentid,displayorder FROM forum WHERE forumid!=XX AND displayorder<>0 ORDER BY parentid,displayorder');
(Change XX there to the forum id of your news forum)
Yuber - I have the majority of the script working on my test site. I haven't added the poll or weather features yet since I don't use them, but the rest of the script is done. I also have to make an upgrade script that will install the templates and etc, plus write up some install instructions. Other than those few things though, the majority of the work is done. I've been extremely busy these last few weeks, so I haven't had much time to finish off those last few things. *Hopefully* I'll have a little more free time over these next couple of weeks.