vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   vBRadio v1.0 (https://vborg.vbsupport.ru/showthread.php?t=72227)

Joe Pimms 03-05-2005 11:33 PM

where can i find a site to have dance or house music on my site ?

Zero Tolerance 03-05-2005 11:34 PM

You'll have to search the internet to find radio streams i'm afraid, i don't provide them, some users have posted links to numerous stations within the thread itself, just browse through it :)

- Zero Tolerance

Mechanical Mind 03-05-2005 11:36 PM

Quote:

Originally Posted by Zero Tolerance
Alright then you probably have javascript disabled .. possibly, or something else. But seen as how the pop up works, and vBChat does for you, javascript is enabled, my only other assumption is the multimedia options in IE.

If your using IE, go to Tools -> Internet Options, go to the Tab Advanced, scroll down and find "Multimedia", ensure all box's are ticked. :)

- Zero Tolerance

OK.

Went into: Tools > Internet Options > Advanced > Multimedia...

All options were "ticked" except for one "Show Image Download Placeholders". I ticked this option and saved.

Then I repeated the steps listed in my last post, but still no difference. (I don't want to hijack this thread. But this is really confusing.)

Zero Tolerance 03-05-2005 11:41 PM

Hmm, then i really am clueless as to why it isn't working for you, js is turned on, multimedia is, your using IE and it works for me/your members.

I'll look into it further, i'll contact you on MSN in an hour or so with any info i can find out, sorry for the wait.

- Zero Tolerance

Mechanical Mind 03-05-2005 11:44 PM

Quote:

Originally Posted by Zero Tolerance
Hmm, then i really am clueless as to why it isn't working for you, js is turned on, multimedia is, your using IE and it works for me/your members.

I'll look into it further, i'll contact you on MSN in an hour or so with any info i can find out, sorry for the wait.

- Zero Tolerance

heck, np, i'm surely not gonna complain about free software and support. :nervous:

once it gets up and running (for me ;) ) i'll make sure to donate a few bucks to the ZT fund.

Joe Pimms 03-06-2005 05:42 AM

hey i was messing around with this hack and i was thinking of maybe why not put this hack on the forumhome template so i did that :

PHP Code:

in FORUMHOME look for:

<if 
condition="$show['birthdays']">
<!-- 
today's birthdays -->

put under:

<!-- Begin vbRadio -->
<script language="JavaScript">
<!--

function changeMute(){
Player.settings.mute = '
true';
mute.innerHTML='
<a href="#" onClick="changeMute2();">Mute*</a>';
}

function changeMute2(){
Player.settings.mute = '
false';
mute.innerHTML='
<a href="#" onClick="changeMute();">Mute</a>';
}

function initiateStation(){
toPlay = document.getElementById('
thisStation')
toPlay = toPlay.options[toPlay.options.selectedIndex].value

    newRadio = "";
    newRadio += "<OBJECT ID='
Player' height='250' width='300' CLASSID='CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6'>"
    newRadio += "<PARAM name='
URL' value='" + toPlay + "' id='insert_1'>"
    newRadio += "<PARAM name='
uiMode' value='none'>"
    newRadio += "<PARAM name='
mute' value='false'>"
    newRadio += "<PARAM name='
ShowControls' value='0'>"
    newRadio += "<PARAM name='
ShowStatusBar' value='0'>"
    newRadio += "<PARAM name='
ShowDisplay' value='0'>"
    newRadio += "<EMBED type='
application/x-mplayer2' "
    newRadio += "pluginspage = '
http://www.microsoft.com/Windows/MediaPlayer/' "
    
newRadio += "SRC='" toPlay "' "
    
newRadio += "name='Player' "
    
newRadio += "width='300' "
    
newRadio += "height='250' "
    
newRadio += "AutoStart='true' "
    
newRadio += "showcontrols='0' "
    
newRadio += "showstatusbar='0' "
    
newRadio += "showdisplay='0' "
    
newRadio += "id='insert_2'>"
    
newRadio += "</EMBED>"
    
newRadio += "</OBJECT>"

    
document.getElementById('radio').innerHTML newRadio

}

-->
</
script>


<
tbody>
<
table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
<
thead>
    <
tr>
        <
td class="tcat" colspan="2">
            <
a style="float:right" href="#top" onclick="return toggle_collapse('forumhome_radio')"><img id="collapseimg_forumhome_radio" src="$stylevar[imgdir_button]/collapse_tcat.gif" alt="" border="0" /></a>
            <
div align='center'>vBRadio</div></td>
    </
tr>

<
tbody id="collapseobj_forumhome_radio" style="{$vbcollapse['collapseobj_forumhome_radio']}">
    <
tr>
        <
td class="thead" width="50%" align="center">Stations/Control</td>
            </
tr>

<
tr>
<
td class='alt2' valign='top'>

    <
fieldset class="fieldset">
    <
legend>Available Stations</legend>
    <
center>
    {
$Station_Select}<br /><br />
    <
input type='button' value='Play This Station' class='button' onclick='initiateStation()' />
    </
center>
    </
fieldset>

    <
br/>

    <
fieldset class="fieldset">
    <
legend>Player Controls</legend>
    <
center>
    [<
font id='mute'><a href='#' onClick='changeMute();'>Mute</a></font>]
    [<
a href='#' onClick='javascript:Player.controls.play();'>Play</a>]
    [<
a href='#' onClick='javascript:Player.controls.stop();'>Stop</a>]
    [
Controls: <a href='#' onClick='javascript:Player.uiMode = "mini";'>On</a> |
           <
a href='#' onClick='javascript:Player.uiMode = "none";'>Off</a>]
    <
br />
    [
Volume:
    <
a href='#' onClick='javascript:Player.settings.volume= 0;'>0</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 10;'>1</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 20;'>2</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 30;'>3</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 40;'>4</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 50;'>5</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 60;'>6</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 70;'>7</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 80;'>8</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 90;'>9</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 100;'>10</a>]
    </
center>
    </
fieldset>

</
td>

<</
td>

</
tr>
</
tbody>

<!-- /
End vbRadio --> 

ok so heres the problem it will not work im i missing some thing on this ?

oh yes as you can see i removed the object as well...

im i to put some thing in the phpinclude_start template ?

please help

Mechanical Mind 03-06-2005 01:12 PM

Quote:

Originally Posted by OrangeFlea
Some of the users cannot hear anything. They've waited 30 seconds after clicking "Play this station"; they have IE, Windows Media Player and Real Player.....what could be the problem?

MegaDittos!

SUMMARY:

1. Installed hack flawlessly as per instructions.
2. Click on "Radio" link in Navbar.
3. vBRadio pop-up appears.
4. Select station.
5. Click "Play This Station".
6. Nothing happens.........

WHAT I KNOW:

1. The hack is installed properly. (It is working perfectly for some users)
2. It is not a firewall issue. (I tried with my firewall disabled, and it still doesn't work)
3. I have JavaScript enabled. (So that's not the problem)
4. I have the latest Windows Media Player 10 (So that's not the problem)
5. I have all choices ticked in TOOLS > INTERNET OPTIONS > ADVANCED > MULTIMEDIA OPTIONS... (So that's not the problem)
6. When I visit the station URLs manually, I click on them and instantly Media Player opens and starts playing the station. (So that's not the problem)

MY PC:

1. Broadband, hi-speed cable connection
2. Windows XP, with updates and service pack installed
3. Pentium 4
4. Internet Explorer 6
5. Fast as hell, with hyperthreading. Not sure on the specs.
6. Virus Protection: Norton Internet Security Professional 2004 (with antivirus, firewall, etc)
7. SpyWare Protection: SpyWare Sweeper

The other user on my site who has complained of the exact same situation that I have, also uses IE 6.

Sorry ZT. It worked just that one time last night. But that was because I visited the URL. It actually, is still not working. I just wanted to summarize this so maybe it can be productive to others if they are having a problem too.

What other options are we left with as to why this isnt' working?

It would appear that this hack simply works for some people and not for others... (nice hack, but consider yourself warned if you are thinking of installing)

jzewatsky 03-06-2005 01:21 PM

Not to be a pest Zero.... Is it possible to add usergroup permissions to the radio?

axi 03-12-2005 03:01 AM

This hack is awesome., using it and it rocks!

One question - Does someone know how to disable the right clicking on the 'Media Player' section onthe vBRadio? Can anyone help me with this please!! Could we write this additional hack for this please??

I'd really appreciate it

sim tech 03-15-2005 05:27 AM

Some of the best links for grabbing both RealAudio & Windows media Feeds:

http://www.crhear.com/webcast.phtml

I found about 40 great ones for my site here.... both audio and video feeds.

Other sites http://www.radio-locator.com/

UKradio stations

On this site, look for the drop down screen on the left...
http://www.europeanirish.com/Radio/

Sleepyk 03-20-2005 12:01 AM

<a href="http://www.kleptikmusic.com/" target="_blank">http://www.kleptikmusic.com/</a>

i installed on my site but when i click it on links it just a white box, and i did everything right..

Pseudomizer 03-20-2005 09:38 AM

Quote:

Originally Posted by Sleepyk
http://www.kleptikmusic.com/

i installed on my site but when i click it on links it just a white box, and i did everything right..

White box means you have a problem with the correct style. I would suggest to check where you installed the templates.

Cheers,

Sleepyk 03-20-2005 04:44 PM

its all right followed instructions perfectly

on both styles i got it dont work

Joe Mac 03-21-2005 12:30 AM

another good one. I do a radio show and this is the perfect player for it.

Sleepyk 03-21-2005 07:00 AM

dont think its right

<script type="text/javascript">
<!--

function OpenRadio(){
Radio = window.open('vBRadio.php','vBRadio','directories=n o,height=320,width=650,locatio n=no,menubar=no,resizable=no,status=no,toolbar=no' )

return false;
}

-->
</script>
<td class="vbmenu_control"><a href="#" onclick="return OpenRadio()">vBRadio</a></td>

is code i place like in instructions, and it dont work @ kleptikmusic.com

Mosh 03-28-2005 02:11 AM

Finally got this working in both IE and Firefox using conditionals and the way WMP is called for both of the browsers so my RADIO template is now heavily modified. Works with both WMP v9 and v10.

Big thanks to you ZT for creating this, my members love this.

Also thanks to SVTBlackLight01, paulz and others who I have forgotten to mention for ideas for doing this.

Quote:

Originally Posted by jzewatsky
Not to be a pest Zero.... Is it possible to add usergroup permissions to the radio?

@ jzewatsky

Edit vBRadio.php and find:
Code:

// ---------------------------------------------------
// End Require Globalized Settings
// ---------------------------------------------------

Under it add:
Code:

if (!is_member_of($bbuserinfo, X) and !is_member_of($bbuserinfo, Y) and !is_member_of($bbuserinfo, Z))
{
  print_no_permission();
}

Where X, Y and Z are the ID numbers of the groups you want to give permission to use vBRadio.

jd :)

jzewatsky 03-28-2005 01:04 PM

Thanks JD, I'll plug that in later on in the day.

Later that day......

Appears to be working...Thank you so much. If it's not too much to ask is there a conditional that I can wrap around the vbradio link in my navbar so that only certain secondary usergroups can see it?

Thanks for the help.

jbear6 03-29-2005 01:32 PM

Very nice hack!

Thanks,
Jbear6

Mosh 03-30-2005 07:54 AM

Quote:

Originally Posted by jzewatsky
Thanks JD, I'll plug that in later on in the day.


Later that day......

Appears to be working...Thank you so much. If it's not too much to ask is there a conditional that I can wrap around the vbradio link in my navbar so that only certain secondary usergroups can see it?

Thanks for the help.

Your most welcome.

Use this around the link:
Code:

<if condition="$bbuserinfo['usergroupid'] == X OR $bbuserinfo['usergroupid'] == Y OR $bbuserinfo['usergroupid'] == Z"> Your Link here </if>
Where X, Y and Z are the ID numbers of the secondary usergroups you want to give permission to see vBRadio link in your navbar, that should work you will have to try to find out, but only use primary usergroups myself, but like I said should work.

jd.

jzewatsky 03-31-2005 12:52 PM

Thanks for your help JD.

It does not appear to be working for secondary usergroups. It works find for primary. Is there a change in the [usergroupid] like [secondaryusergroupid]? How do we/you know how and under what name variables are stored in the DB?

jbear6 04-02-2005 06:17 PM

Quote:

Originally Posted by jdsinclair
Finally got this working in both IE and Firefox using conditionals and the way WMP is called for both of the browsers so my RADIO template is now heavily modified. Works with both WMP v9 and v10.

Big thanks to you ZT for creating this, my members love this.

Also thanks to SVTBlackLight01, paulz and others who I have forgotten to mention for ideas for doing this.

jd :)

Is there anyway you could share a few hints on how you got this to work with Firefox. I tried the ActiveX extension, but it would not work for me.

Thanks,
Jbear6

Mosh 04-07-2005 08:55 AM

Quote:

Originally Posted by jzewatsky
Thanks for your help JD.

It does not appear to be working for secondary usergroups. It works find for primary. Is there a change in the [usergroupid] like [secondaryusergroupid]? How do we/you know how and under what name variables are stored in the DB?

Ok, try this then:
Code:

<if condition="$bbuserinfo['membergroupids'] == X OR $bbuserinfo['membergroupids'] == Y OR $bbuserinfo['membergroupids'] == Z"> Your Link here </if>
Where X, Y and Z are the ID numbers of the secondary usergroups you want to give permission to see vBRadio link in your navbar, that should work as membergroupids is the secondary usergroups ID.

jd.

aedridge 04-16-2005 01:37 AM

This is a very, very nice mod dude, takes the boardem out of administering a forum, LOL

Great Mod.

Thanks
Andy :speechless:

NFLForums 04-22-2005 05:46 AM

Okay...This is a unique problem, I think...

I had vbradio installed previously, but redid my forums, so I uninstalled it manually (reverted templates, dropped the table & deleted all the files that it had created).

I went to reinstall it tonight & it gets through step one, then tells me that there is a database error:

Quote:

There seems to have been a slight problem with the The NFL Forums - Brought to you by the "Banned" of Brothers database.
Please try again by pressing the refresh button in your browser.

An E-Mail has been dispatched to our Technical Staff, who you can also contact if the problem persists.

We apologise for any inconvenience.
Not sure what is going on here...Well, obviously there is some sort of database error...but has anybody else gotten that when they were attempting to install it? I uploaded everything to the proper directories...

NFLForums 04-22-2005 05:48 AM

ah I just checked my email...

Quote:

Database error in vBulletin 3.0.7:

Invalid SQL: INSERT INTO phrase VALUES ('', 0, 'radio_cat_added', 'Radio Category Added', 9000);
mysql error: Duplicate entry 'radio_cat_added-0-9000' for key 2

mysql error number: 1062
Is what is going on...Is there something I could do to manually put this through, or does that mean that I need to create the table or something first?

Pseudomizer 04-22-2005 05:58 AM

Quote:

Originally Posted by NFLForums
ah I just checked my email...



Is what is going on...Is there something I could do to manually put this through, or does that mean that I need to create the table or something first?

You didn't delete everything during your deinstall. It says duplicate entry. You deleted all the tables but it also creates phrases. You should delete every phrase and then try to install it again. Then it should work.

Cheers,

am-fs 04-30-2005 11:54 PM

OK.....?
I have VB3.07
I didnt look at the version when i downloaded it and installed it on VB3.07 (test forum )
I deleted the 2 files it asked on the admincp set up screen.
it didnt work, so i added back the Vbradio.php to the root directory
works fine

I now know of the VB2.3 radio, is there a reason i should up-grade?
i like the this version of the player

any thoughts?
thanks

Snitz 05-17-2005 03:06 PM

I was wondering
is it possible to add the "volume" "mute" "stop" "play" functions
as buttons under the play window, just like in the media player!!!

is it possible ?

Snitz 05-17-2005 03:33 PM

what I meant is, how can I set the controls "on" by default ?

Hiro 05-20-2005 01:14 AM

* Brilliance clicks install

Hiro 05-20-2005 01:14 AM

<a href="http://www.eliteneo.com/vBRadio.php" target="_blank">http://www.eliteneo.com/vBRadio.php</a>

Qwest 05-20-2005 01:19 PM

Quote:

Originally Posted by Brilliance

You have to be logged in to view it.

Make it public or dont post it here.

MissKalunji 05-22-2005 09:39 AM

Hey i dont know if this was asked before but will this work with 3.5.0?

Polo 05-23-2005 02:53 AM

Quote:

Originally Posted by MissKalunji
Hey i dont know if this was asked before but will this work with 3.5.0?

well... I dont think that version has not even come out yet :ermm:, did you mean 3.0.5?

MissKalunji 05-23-2005 03:07 AM

Quote:

Originally Posted by Polo
well... I dont think that version has not even come out yet :ermm:, did you mean 3.0.5?

i know....i was just asking if the developper was gon upgrade it for the next vb or if he doesnt have time for that..... :nervous:

ams3521 05-30-2005 08:16 PM

Superb and thanks.

quachvu 06-15-2005 02:26 PM

i cant play file.ram of real player although i have install real player in my computer

MissKalunji 06-15-2005 02:58 PM

Quote:

Originally Posted by quachvu
i cant play file.ram of real player although i have install real player in my computer

ram? these are not ram....

quachvu 06-16-2005 05:38 AM

[QUOTE]http://www.bbc.co.uk/vietnamese/rams/viet2300.ram[QUOTE]

that link i can hear in forum with BBCODE of real player .. but cant hear with this radio hack

MissKalunji 06-16-2005 11:41 AM

[QUOTE=quachvu][QUOTE]http://www.bbc.co.uk/vietnamese/rams/viet2300.ram
Quote:


that link i can hear in forum with BBCODE of real player .. but cant hear with this radio hack

but...this radio hack doesnt use ram...it uses rbs and theres a converter included....unless u have the wrong hack....... :surprised:


All times are GMT. The time now is 09:33 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01739 seconds
  • Memory Usage 1,901KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (1)bbcode_php_printable
  • (16)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete