Log in

View Full Version : [HELP] Hiding Certain Usergroups


mk craig 42
03-18-2009, 11:21 PM
Okay, well im trying to hide certain usergroups from viewing a certain link depending upon which "Team" they are in.. which i created via User Profile Fields.

I have an external page for Team A and another page for Team B. which is linked to my navbar with this code.

<if condition="$show['guest']">
</if>

<if condition="$show['member']">
<if condition="$bbuserinfo['field16'] === 'Team1'">
<div class="sidebar_menu"><a href="http://MYSITE.com/forum/Team_A.php">MY TEAM</a></div></if>

<if condition="$bbuserinfo['field16'] === 'Team2'">
<div class="sidebar_menu"><a href="http://MYSITE.com/forum/Team_B.php">MY TEAM</a></div></if>
</if>

It works fine as it should.. When in Team A, it does not show the link for Team_A.php, vise verse. But they can still simply change the URL to Team_x.php to view the other teams page, which is what i really dont want.

I need it so that when in Team A, you are UNABLE to view Team B's page.. as well as the other way round.

Could someone help me do this please, many thanks.

RLShare
03-19-2009, 12:31 AM
You need to do something similar within the php of your custom pages, show the content if they are a member of group a and show an error message if they are not. There is a function in VB to print out a standard 'no permission' error message page if you want as well, I forget hte name of the top of my head. But if you look through the VB files you should be able to find it

mk craig 42
03-19-2009, 12:58 AM
Oh Dear, of course you do, well its almost 2am here i'm tried, can't think straight, thank you very much for your help, i often need reminding about what to do when it comes to coding, I'm really new to this, and need a kick start every now and then :) I've sorted it now.