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

Reply
 
Thread Tools
vJukebox - Song and Video Management System Details »»
vJukebox - Song and Video Management System
Version: 0.9.0, by Cole2026 Cole2026 is offline
Developer Last Online: Jul 2020 Show Printable Version Email this Page

Version: 3.5.3 Rating:
Released: 12-08-2005 Last Update: 01-30-2006 Installs: 119
DB Changes Uses Plugins Template Edits
Additional Files Is in Beta Stage  
No support by the author.

vJukebox v 0.9.0 Alpha

What does this do?
This is a Jukebox system, you can add and listen to/play videos/songs, users can rate the media, comment it, and much more!
Updates:

0.9.0 - Total Rewrite, several new features, template overhall.
0.8.1 - Fixed several bugs that I overlooked at first distribution.

Known Bugs:

File Writing Error - Fix by Replicators, See this post.

To Install:
1. Import the product xml file in this folder.
2. Upload all files in the upload folder.
3. Create a folder named media in your forumroot (or another name, you can edit the name of the folder you want to upload media in, in the ACP settings. CHMOD 777
3. Enjoy.

Please note:
I will not officially support this until we get into the beta phases.

If you want to add a link to this in the navbar:
In the template: navbar
=============================
FIND:
=============================
<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
=============================
BELOW THIS, ADD:
=============================
<td class="vbmenu_control"><a href="jukebox.php?$session[sessionurl_q]">Jukebox</a></td>
=============================

Bug Reporting:
Please report all bugs to:
http://www.digitalsupremacy.com/forums/vbugs.php


Please Donate if you want the product to grow. I'll donate 15% of all donations I get for this project to Unicef as well.

Supporters / CoAuthors

Show Your Support

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

Comments
  #412  
Old 07-15-2006, 04:28 AM
disfnctional disfnctional is offline
 
Join Date: Aug 2005
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by tytyguy
i get "could not find phrase jukebox_error" when i tried to put music in! WTF!
I get the same thing. I found it works if you upload the files VIA FTP and just use the link insted of uploading from your computer it works
Reply With Quote
  #413  
Old 07-15-2006, 04:00 PM
ragtek ragtek is offline
 
Join Date: Mar 2006
Location: austria, croatia
Posts: 1,630
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by rogersnm
I just get a white box when i click to view a song...

here is a screenshot:


if you view the code then it has:

Code:
					<!-- Abode Flash -->
					<object data="http://www.forums.perfectforce.com/players/mp3player.swf?file=http%3A%2F%2Fforums.perfectforce.com%2Fmedia%2FYou%27re+Beautiful.mp3&amp;autoPlay=true" type="application/x-shockwave-flash" width="220" height="20" class="player_mozilla">
		 			 <param name="play" value="true" />
		  		 <param name="wmode" value="opaque" />
		  		 <param name="quality" value="high" />
					</object>
					<!--[if IE]>
					<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="220" height="20">
		 				<param name="movie" value="http://www.forums.perfectforce.com/players/mp3player.swf?file=http%3A%2F%2Fforums.perfectforce.com%2Fmedia%2FYou%27re+Beautiful.mp3&amp;autoPlay=true" />
		  			<param name="play" value="true" />
		  			<param name="wmode" value="opaque" />
		  			<param name="quality" value="high" />
					</object>
					<![endif]-->
but the file "http://www.forums.perfectforce.com/players/mp3player.swf" does not exist and is not in the zip file... any ideas?
i have the same problem here

Code:
switch ( $media['extension'] )
		{
			case 'mp3':
				if ( $vbulletin->options['jukebox_flashmp3'] )
				{
					$media['url'] = $vbulletin->options['bburl'].'/players/mp3player.swf?file=' . htmlentities( urlencode( $media['url'] ) ) . '&amp;autoPlay=true';
					$media['height'] = 20;
					$media['mime']='application/x-shockwave-flash';
					$media['type']='adobe_flash';
here you send it to the player that doesn exist
Reply With Quote
  #414  
Old 07-17-2006, 01:16 PM
Snake's Avatar
Snake Snake is offline
 
Join Date: Mar 2005
Location: Cleveland, OH
Posts: 3,832
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am getting this error below while trying to upload a song or video...

Quote:
Could not find phrase 'jukebox_errorwriting_x'.
Any idea?
Reply With Quote
  #415  
Old 07-18-2006, 12:33 PM
Snake's Avatar
Snake Snake is offline
 
Join Date: Mar 2005
Location: Cleveland, OH
Posts: 3,832
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Cole2026
Make a .htaccess file, put it in your public_html folder and put this in it:
php_value upload_max_filesize 10M

I finally got around to buying another vB license so I have the rights to post around here and what not again.
Okay that worked but it seems that the jukebox ain't working on Firefox correctly.
Reply With Quote
  #416  
Old 07-23-2006, 01:59 AM
Guest210212002
Guest
 
Posts: n/a
Default

I fixed two issues that I had with this today (I've been hacking mine to pieces).

Here was my player:



I had two issues. One, the big white box. This is because while Mozilla is smart enough to ignore some tags, IE isn't. So IE was parsing BOTH the Mozilla player and the IE player. It could render one and not the other, so I ended up with the double-box.

Adding:

Code:
 style="*display:none;"
To the end of the object tag causes IE to skip it. Mozilla skips it anyway. This removed the doublesized object box, and renders just the one player per browser.

Secondly, after I fixed that, I noticed that the player itself didn't blend in with my background - the box around it was still white. I added:

Code:
<PARAM NAME=bgcolor VALUE="#555555">
To the object call, and what I ended up with is this:



Voila! Happy, cross-browser, color-coordinated flash player. Here's my whole object call. Colored text is what I added:

Code:
<object data="$media[url]" type="$media[mime]" width="$media[width]" height="$media[height]" class="player_mozilla" style="*display:none;">
 <PARAM NAME=bgcolor VALUE="#555555">
 <param name="play" value="$media[autoplay]" />
 <param name="wmode" value="opaque" />
 <param name="quality" value="high" />
</object>
Hope this helps.

On an unrelated note, jukebox_medianotactive phrase is also missing.
Reply With Quote
  #417  
Old 07-23-2006, 11:57 AM
Snake's Avatar
Snake Snake is offline
 
Join Date: Mar 2005
Location: Cleveland, OH
Posts: 3,832
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Chris are you running on Firefox because I am and the player does not loads for me. :\
Reply With Quote
  #418  
Old 07-23-2006, 01:47 PM
Guest210212002
Guest
 
Posts: n/a
Default

Yeah, I've tested it on FF as well. I have it set to use the flash player by default, not Windows Media.
Reply With Quote
  #419  
Old 07-23-2006, 04:50 PM
Snake's Avatar
Snake Snake is offline
 
Join Date: Mar 2005
Location: Cleveland, OH
Posts: 3,832
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

And how do I do that? I'm really new to this jukebox stuff you know.
Reply With Quote
  #420  
Old 07-23-2006, 05:44 PM
ReadOrDie ReadOrDie is offline
 
Join Date: Sep 2005
Posts: 258
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Does not work for me. Everything is in its correct place but music isnt working in IE or FF. Any suggestions? The folder is chmodded to 777
Reply With Quote
  #421  
Old 07-23-2006, 10:42 PM
Guest210212002
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by Dark Blade
And how do I do that? I'm really new to this jukebox stuff you know.
It's in the jukebox settings:

"Would you like to use a flash MP3 player or use a Windows Media Player Non-Flash Varient?".

Set that to Yes.
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 03:58 AM.


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.05024 seconds
  • Memory Usage 2,314KB
  • Queries Executed 26 (?)
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
  • (5)bbcode_code
  • (5)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
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (8)postbit_onlinestatus
  • (11)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