Hello Guys,
Can somebody help me with the following problem:
What i try to do is:
i want to exclude some forums for the visitors ( i know there is a simple way in the admin panel, but for specific reasons i have to do it this way) here is what i wrote:
PHP Code:
// Added by NL-X to shield from invisible forums (see config.php)
global $visibleForums;
$nlxQuery=$DB_site->query("select forumid, 0 as canview, 0 as canpostnew from forum where forumid not in (" . $visibleForums . ")");
while ($nlxRow=$DB_site->fetch_array($nlxQuery)) {
$ipermcache["$nlxRow[forumid]"]=$nlxQuery;
echo $nlxRow[forumid] . "<br>";
}
// End adding by NL-X
i put this in the forums/index.php right after:
PHP Code:
//Forum perms
$forumperms=$DB_site->query("SELECT forumid,canview,canpostnew FROM forumpermission WHERE usergroupid='$bbuserinfo[usergroupid]'");
while ($forumperm=$DB_site->fetch_array($forumperms)) {
$ipermcache["$forumperm[forumid]"] = $forumperm;
}
In config.php is added this:
PHP Code:
// Added by NL-X to make other forums invisible. (To be able to use more vb's with one database, and have each vb have its own visible forums.)
// which forums should be visible, seperated by comma's. (Don't forget to add new forums here to make them active!) Do not leave empty.
$visibleForums = "4";
// End adding by NL-X
?>
So the only forum that i should see when i go to the forumhome is the forum with id=4
But someway somehow i see all forums and they are all accessible.
Can someone help me out here?
Thanx in advance
P.S.: I need this as soon as possible