Version: 1.00, by Zero Tolerance
Developer Last Online: Nov 2023
Version: 3.0.3
Rating:
Released: 11-26-2004
Last Update: 11-27-2004
Installs: 286
DB Changes
No support by the author.
Yay, a radio system, an idea which i thought of in my sleep believe it or not .. maybe i work too hard.
Anyway this is a simple yet effective addition to your forum, and takes no time to install what so ever.
Features
ACP Features
vBRadio Channel Control
Add a new channel/radio station (Input: name, station stream url, for which cat)
Edit Existing Channels
Delete Exisiting Channels
vBRadio Category Control
Add a new category (Input: name)
Edit existing categories
Delete existing categories
Deletion Parameters
Choose to delete all channels within this category
Choose to move all channels within this category to another
Forum Interface Features
Radio pop's up in a window to keep while the user continues to browse
Drop down menu to select which station the user wishes to listen too
Player Controls
Volume Control
Play
Stop
Mute
Media Player Controls On/Off
Misc.
Only uses 1 SQL Query!
Included Within Download
Installation Instructions
Automatic DB/Template/Phrase Installer
A few pre-installed stations
Anyone having difficulties with listening to any of the stations please be patient. Also make sure that you have windows media player and in some cases real player installed.
Any questions/suggestions please post below, i have also put some previews up. Enjoy
- Zero Tolerance
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
dam i broke it and i dont know what i did but now im getting this when i try to veiw the radio Parse error: parse error, unexpected T_STRING in /home/djjeffa/public_html/vb/vBRadio.php on line 8
did you mess with vBRadio.php? Restore the original file...
The stations are in your database....The only "files" this uses is the vBRadio.php file (which is never altered by the use of the hack) and your RADIO template. When you add cats and stations, these are being written to the database table "RADIO"
What did you do prior to this problem you had? What file did you edit?
The stations are in your database....The only "files" this uses is the vBRadio.php file (which is never altered by the use of the hack) and your RADIO template. When you add cats and stations, these are being written to the database table "RADIO"
What did you do prior to this problem you had? What file did you edit?
I really dont remeber i added a bunch of hacks
and i uploaded a fresh vbradio.php so i dont know
EDIT: I fixed i reinstaed the templates then got a db error and stoped but now it works lol
I really dont remeber i added a bunch of hacks
and i uploaded a fresh vbradio.php so i dont know
EDIT: I fixed i reinstaed the templates then got a db error and stoped but now it works lol
Never start a new hack without first backing up the file you are about to edit. Especially if you have installed other hacks and modified a file many times. I always create a copy of the file I am about to edit so I can easily get back to where I was if I fubar something.
Glad you got it working Jeff.
Hello..just installed, everything went ok...some questions
If i ever want to uninstall it(i dont want, i just ask!), i will undo whatever i did ok? But what with the "install_vbradio.php" i run...?
Or its another way?
Also, how can i edit the word VBRadio, from my navbar(to something like Radio!)...Just go to navbar template and change the word ?
Ps
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?
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();
}