Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.7 > vBulletin 3.7 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
MP3 Playlist , Player from YoBroMoFo Details »»
MP3 Playlist , Player from YoBroMoFo
Version: 3.00, by TimberFloorAu TimberFloorAu is offline
Developer Last Online: Jan 2013 Show Printable Version Email this Page

Category: Mini Mods - Version: 3.7.2 Rating:
Released: 09-03-2008 Last Update: 09-05-2008 Installs: 7
Uses Plugins Template Edits
Additional Files  
No support by the author.

Mp3 Playlist Flash Player

If you do not click INSTALL no help will be provided.
Do NOT remove Copyright information or our small link !

What is this:?
Ok its The AussieTrance MP3 Playlist Vbulletin Integration.
Its brilliant, fast fun and free. Listen to music whilst on your forum, add to your playlist, remove items, members stay on your forum for longer !


Ok second stab at integrating the www.aussietrance.com playlist player onto your Vbulletin forum.

Please note this is tested on Vb 3.7.x only.

Credits goto:
DigitalJedi ( for help with code )
Gary King ( Your own Vbulletin Powered Page )
All of the members on www.yobromofo.com for putting up with my Guinnea Pig Trials.

Okay.
This is quite extensive but easy to do, just follow the steps.

Step 1.
Create your own vbulletin powered page, and call it: playlist.php
Here is the code I use. Just copy and paste it into notepad, or other text editor, then upload via ftp to your forum root, example ( forum/playlist.php )
Code:
<?php
 
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
 
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'playlist'); // change this depending on your filename
 
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array(
 
);
 
// get special data templates from the datastore
$specialtemplates = array(
 
);
 
// pre-cache templates used by all actions
$globaltemplates = array(
    'playlist',
);
 
// pre-cache templates used by specific actions
$actiontemplates = array(
 
);
 
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
 
// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################
 
$navbits = array();
$navbits[$parent] = 'Aussie Trance Playlist';
 
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('playlist') . '");');
 
?>
Step 2.
Creating a Vb Powered Page Template.

Goto admincp>Styles and Templates>Style Manager>Your Style>All Style Options>Add New Template

Title: playlist
Template : add the code below
Code:
<center>
<embed
src="http://www.aussietrance.com/playlistplayer.swf"
width="400"
height="145"
allowscriptaccess="always"
allowfullscreen="false"
flashvars="height=145&width=400&file=http://www.aussietrance.com/includes/sources/playlistxml.php?id=$bbuserinfo[field16]&backcolor=0xCCCCCC&displaywidth=125&searchbar=false&showicons=false&showeq=true&showdownload=true&thumbsinplaylist=false&autostart=false&autoscroll=true"
/><br><a href="http://www.aussietrance.com/" target="_new">Create your own FREE music playlist for your profile!</a></center>
Note : In this code it says $bbuserinfo[field16]

This you will need to change after the next step. OK

Step 3.

Admincp>User Profile Fields>Add New Profile Field

Title: AussieTrance.com Vbulletin Playlist ID
Description: Put your AussieTrance.com Playlist ID here.
Max Length of Allowed user input: 100
Field Length: 25
Field Reqd: No
Private Field : Yes
Field Searchable on members List: No
Show On Members List: No

Click Save

Now when you return to the Profile Field Manager screen, take note of the field Number
example field16

Step Four:
Now go back to your template playlist
(find in Styles and Templates, your template search playlist )
Find $bbuserinfo[field16] and change the 16 to your number !

EASY

Step 4.

OK now thats ALL edits done... apart from we now need to edit Navigation Bar.

This is also fairly easy.

In your template:> navbar

Add the code below to the very top of your template
Code:
<!--playlist popup-->
<script type="text/javascript">
function openpopup(popurl){
var winpops=window.open(popurl,"","width=450,height=180")
}
</script>
<!--end of playlist popup-->
Scroll down the page, and look for ::
Code:
<td width="100%"><span class="navbar"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1">$vboptions[bbtitle]</a></span> $navbits[breadcrumb]</td>
            </tr>
After add:
Code:
<!--menu for playlist-->
<tr>
            <td class="vbmenu_option" >
<a href="javascript:openpopup('playlist.php')">My Playlist</a>
</td>
</tr>
<!--end of menu for playlist-->
Save.

Step 5.

Goto FORUMHOME template

find
Code:
</head>
JUST before it add.
Code:
<!--playlist popup-->
<script language="javascript" type="text/javascript">
<!--
var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';
win=window.open(mypage,myname,settings);}
// -->
</script>
<!--end of playlist popup-->
FINISHED !

Now all your users need to do, is goto www.aussietrance.com , join up for FREE.
Search and add tunes to their playlist.

When they are done, they can click My Playlist

They will see:
Add My Playlist to Vbulletin post or Signature

Underneath is their Playlist ID.

Copy the ID.

Come back to your forum, goto UserCP
Edit your Details
Scroll to the bottom, and Paste the ID into the Aussie Trance box.

Thats it.

Now when they are on your site, they can click the Playlist menu item, and their AussieTrance playlist will popup and begin playing.

Its a brilliant CODE. I cannot convert to a product. As it does require template creation and template edits.

Have Fun Ozzy

*** We will be creating a Postbit Addon too ***

SOON


********************** 5th September 2008 **********************
ADDED POSTBIT ADDON

********************** 6th September 2008 **********************
Added Product
This product will display the users Playlist in their profile. It automatically pulls the info from their User Control Panel (fieldx)

Full instructions enclosed. Please read ALL instructions.

To Install ::::::

Decompress the included Zip.

1. upload the product via admincp > Product manager > Upload product ( locate the product within this zip )

2. follow the instructions in the Playlist Install Info , readme.

Done.

TODO::::
Currently this mod pulls the information from your own bbuser info, so when viewing another persons profile, your playlist is shown. Similarly

other users, will see their playlist in your user profile.

We will be looking for a code workaround on this asap.

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #12  
Old 09-07-2008, 08:00 PM
TimberFloorAu's Avatar
TimberFloorAu TimberFloorAu is offline
 
Join Date: May 2008
Location: Brisbane
Posts: 2,264
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you have installed, please click Installed Thanks
Reply With Quote
  #13  
Old 09-15-2008, 01:11 PM
yumyumcat's Avatar
yumyumcat yumyumcat is offline
 
Join Date: Jan 2006
Location: Sunny South Kitty Land
Posts: 66
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Goto admincp>Styles and Templates>Style Manager>Your Style>All Style Options>Add New Template

I don't understand. I see Styles & Templates>Style Manager> ...Add New Template...

I'm missing"Your Style>All Style Options> It seems pretty straight forward, but I don't see that.
Reply With Quote
  #14  
Old 09-15-2008, 01:22 PM
TimberFloorAu's Avatar
TimberFloorAu TimberFloorAu is offline
 
Join Date: May 2008
Location: Brisbane
Posts: 2,264
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by yumyumcat View Post
Goto admincp>Styles and Templates>Style Manager>Your Style>All Style Options>Add New Template

I don't understand. I see Styles & Templates>Style Manager> ...Add New Template...

I'm missing"Your Style>All Style Options> It seems pretty straight forward, but I don't see that.
Here ya go mate
Reply With Quote
  #15  
Old 09-15-2008, 10:38 PM
yumyumcat's Avatar
yumyumcat yumyumcat is offline
 
Join Date: Jan 2006
Location: Sunny South Kitty Land
Posts: 66
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks so much!

I just got back from school...okay one more question. What's my ID# How do I get that?

Find $bbuserinfo[field16] and change the 16 to your number !

color me stupid, I know, but I don't get it
Reply With Quote
  #16  
Old 09-15-2008, 11:36 PM
TimberFloorAu's Avatar
TimberFloorAu TimberFloorAu is offline
 
Join Date: May 2008
Location: Brisbane
Posts: 2,264
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by yumyumcat View Post
Thanks so much!

I just got back from school...okay one more question. What's my ID# How do I get that?

Find $bbuserinfo[field16] and change the 16 to your number !

color me stupid, I know, but I don't get it
Quote:
Step 3.

Admincp>User Profile Fields>Add New Profile Field

Title: AussieTrance.com Vbulletin Playlist ID
Description: Put your AussieTrance.com Playlist ID here.
Max Length of Allowed user input: 100
Field Length: 25
Field Reqd: No
Private Field : Yes
Field Searchable on members List: No
Show On Members List: No

Click Save

Now when you return to the Profile Field Manager screen, take note of the field Number
example field16

Step Four:
Now go back to your template playlist
(find in Styles and Templates, your template search playlist )
Find $bbuserinfo[field16] and change the 16 to your number !
Ok let me explain in better detail.

You have a forum, your users may want to play music on a playlist they have created.
So.

You have to bridge the two.

By creating a profile field, in profile field manager, we are assigning it a value, to be added or not. If nothing is added, nothing is displayed.
Your users, then goto Aussietrance and create a playlist, which spits out a ID for them to use on your forum.
By doing the Extra profile field above, ( obviously ) dependant on your forum, and config, your profile field for this, may be 27 or 12 or 178 , I have no idea, but VB creates and assigns a profile field number when you create that profile field.

All you have to do, is take a note of the user profile field number ( lets say 27 )
And change my code accordingly, from 16 to 27

Simple, if you get stuck, send me a pm, and admin access, I will do template edits for you.

Ste
Reply With Quote
  #17  
Old 09-15-2008, 11:44 PM
yumyumcat's Avatar
yumyumcat yumyumcat is offline
 
Join Date: Jan 2006
Location: Sunny South Kitty Land
Posts: 66
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you!! You're a sweetheart. I think I get it now though
Reply With Quote
  #18  
Old 09-15-2008, 11:50 PM
TimberFloorAu's Avatar
TimberFloorAu TimberFloorAu is offline
 
Join Date: May 2008
Location: Brisbane
Posts: 2,264
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by yumyumcat View Post
Thank you!! You're a sweetheart. I think I get it now though
No problems. Any issues please let me know, and if you use it, please mark installed.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:04 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04910 seconds
  • Memory Usage 2,297KB
  • Queries Executed 23 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (7)bbcode_code
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (8)post_thanks_box
  • (8)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (8)post_thanks_postbit_info
  • (7)postbit
  • (8)postbit_onlinestatus
  • (8)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete