
11-28-2004, 09:00 PM
|
 |
|
|
Join Date: Aug 2004
Posts: 521
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by lanc3lot
Also, i dont know if u mentioned that before..but..how it works? 
I mean, does it load my server and so my BW or it goes to the "net radio " itself server right a way?
Ps2
Something last:P
How can i prevent, my guests play with the radio? So only my registered users, can use it?
Thanks a lot again 
|
id uses the bw of who ever is streaming th music
and maybe this will help
Quote:
Originally Posted by KirbyDE
X must be replace with the usergroupid.
If you want to check for several groups
HTML Code:
<if condition="is_member_of($bbuserinfo, x) or is_member_of($bbuserinfo, y) or is_member_of($bbuserinfo, z)">
your stuff here
</if>
You can also specify which groups are allowed to access radio.php (put this right after require global):
PHP Code:
if (!is_member_of($bbuserinfo, x) and !is_member_of($bbuserinfo, y) and !is_member_of($bbuserinfo, z)) {
print_no_permission();
}
|
|