I've spotted a problem with this. Even if you protect the Archive and threads from being viewed on the forum board.
They can still view them via the
printthread.php link instead to bypass the permissions as a guest and still view the full thread as a printable thread version. By simply replacing the showthread name in the link they want to view with "printthread" instead. This can be done manually quite easy to view all threads as printable versions.
Does anybody know how to use the same method to stop certain usergroups from accessing the printthread page?
EDIT:
Fixed it now for printthread.
Find:
Code:
globalize($_REQUEST, array('perpage' => INT, 'pagenumber' => INT));
below it put:
Code:
$grouparray = array ( 3,4);
if (in_array($bbuserinfo['usergroupid'],$grouparray) OR $bbuserinfo['userid'] == 0 AND !preg_match("#(google|slurp@inktomi|yahoo! slurp|lycos|ask jeeves|scooter|fast-webcrawler|turntinbot|msnbot|webcrawler|Infoseek|W3C_Val|googlebot)#si", $_SERVER['HTTP_USER_AGENT']))
{
print_no_permission();
}