vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Add-On Releases - Mini YouTube Video in Profile (right side block) (https://vborg.vbsupport.ru/showthread.php?t=169824)

DevinM 08-08-2008 03:44 AM

Great hack!

Ive noticed in your website you have a playlist.com mp3 player! How do you do that, ive been looking for a hack like that for ages now!

GrendelKhan{TSU 08-08-2008 06:35 AM

awesome!!!

thanks. INSTALLED :D

DevinM 08-08-2008 07:42 PM

I guess does anyone for that matter know if there is a hack available for the playlist.com MP3 profile player found in his profile?

http://www.next-level-arcade.com/member.php?u=31

Chadi 08-10-2008 05:33 AM

I'm trying to get this working for Godtube.com, since no one responded to my post last month, I gave it a shot. I got eveything working, except the actual video showing up :x

Templates all there, video block shows up - just without the actual video.

This is the xml file I used:

Code:

<?xml version="1.0" encoding="ISO-8859-1"?>

<product productid="godtube_member_profile" active="1">
    <title>Mini GodGube for Member Profile</title>
    <description>Displays a mini GodTube video on the right side of member profile.</description>
    <version>2.1</version>
    <url />
    <versioncheckurl />
    <dependencies>
    </dependencies>
    <codes>
    </codes>

<plugins>
    <plugin active="1" executionorder="5">
        <title>Mini GodGube for Member Profile</title>
        <hookname>member_build_blocks_start</hookname>
        <phpcode><![CDATA[if (is_member_of($vbulletin->userinfo,1 ,2 , 5, 6, 7))
        {
            eval('$blocks[godtube] = "' . fetch_template('memberinfo_block_godtube') . '";');}]]></phpcode>
    </plugin>
        <plugin active="1" executionorder="5">
            <title>Mini right side godtube for Member Profile - Cache Template</title>
            <hookname>cache_templates</hookname>
            <phpcode><![CDATA[$globaltemplates[] = 'memberinfo_block_godtube';]]></phpcode>
        </plugin>
      </plugins>

<templates>
   
    <template name="memberinfo_block_godtube" templatetype="template" date="" username="stangger5" version="2.1"><![CDATA[
<!-- godtube -->
<if condition="$userinfo[fieldi]">
<div id="godtube" class="tborder content_block">
    <h4 class="thead block_title">
        <a href="#top" class="collapse_gadget" onclick="return toggle_collapse('godtube')"><img id="collapseimg_godtube" src="images/buttons/collapse_generic.gif" alt="" border="0" /></a>
        <a name="albums"></a>
        <span class="block_name">godtube Video</span>
    </h4>
    <div class="block_content" id="collapseobj_godtube" style="">
       
    <div class="alt1 smallfont block_row"><if condition="$userinfo[fieldt]">Title:&nbsp;$userinfo[fieldt]</if></div>
           
    <div class="alt2 block_row block_footer"><object width="240" height="200"><param name="movie" value="http://www.godtube.com/view_video.php?viewkey=$userinfo[fieldi]"></param><param name="wmode" value="transparent"></param>
<embed src="http://www.godtube.com/view_video.php?viewkey=$userinfo[fieldi]$userinfo[fielda]" type="application/x-shockwave-flash" wmode="transparent" width="240" height="200"></embed></object>
    </div>
</div>
</div>
</if>
<!-- / godtube -->
   
    ]]></template>
   
</templates>
    <phrases>
    </phrases>
    <options>
    </options>
    <helptopics>
    </helptopics>
    <cronentries>
    </cronentries>
    <faqentries>
    </faqentries>
</product>


BucWiLd 08-10-2008 03:48 PM

works great! thanx

BucWiLd 08-10-2008 08:09 PM

by the way where do i get the mp3 embeded like you have on yours?

poetrymansion 08-11-2008 07:03 PM

hi

I just wanted to say thanks for taking time to make the instructons simple enough for me (a newbie) to follow......

It appears brill, my only prob is, it doesnt autoplay when people go to the page, any ideas on how i can fix this...

cheers

poetrymansion

Chris11987 08-11-2008 09:09 PM

How do I get this to appear on the right side in a block? On my site (3.7.1) it just appears as a profile tab that you have to click, like "About Me, Statistics, Friends, etc"

stangger5 08-11-2008 10:05 PM

Quote:

Originally Posted by poetrymansion (Post 1596425)
hi

I just wanted to say thanks for taking time to make the instructons simple enough for me (a newbie) to follow......

It appears brill, my only prob is, it doesnt autoplay when people go to the page, any ideas on how i can fix this...

cheers

poetrymansion

Can I have a look at your site ??

Quote:

Originally Posted by Chris11987 (Post 1596501)
How do I get this to appear on the right side in a block? On my site (3.7.1) it just appears as a profile tab that you have to click, like "About Me, Statistics, Friends, etc"

You put the $blocks[youtube] in the wrong place..

I have mine after $blocks[friends_mini]..
Like this,,



Code:

$blocks[stats_mini]
$template_hook[profile_right_mini]
$blocks[friends_mini]
$blocks[youtube]
$blocks[albums]
$template_hook[profile_right_album]
$blocks[groups]
$blocks[visitors]


poetrymansion 08-12-2008 09:53 PM

Simply fantastic........ and the help is first class.... even for a beginner like me....

Thanks so much....

poetrymansion

Chadi 08-14-2008 04:50 AM

Quote:

Originally Posted by chadi (Post 1595214)
I'm trying to get this working for Godtube.com, since no one responded to my post last month, I gave it a shot. I got eveything working, except the actual video showing up :x

Templates all there, video block shows up - just without the actual video.

This is the xml file I used:

Code:

<?xml version="1.0" encoding="ISO-8859-1"?>

<product productid="godtube_member_profile" active="1">
    <title>Mini GodGube for Member Profile</title>
    <description>Displays a mini GodTube video on the right side of member profile.</description>
    <version>2.1</version>
    <url />
    <versioncheckurl />
    <dependencies>
    </dependencies>
    <codes>
    </codes>

<plugins>
    <plugin active="1" executionorder="5">
        <title>Mini GodGube for Member Profile</title>
        <hookname>member_build_blocks_start</hookname>
        <phpcode><![CDATA[if (is_member_of($vbulletin->userinfo,1 ,2 , 5, 6, 7))
        {
            eval('$blocks[godtube] = "' . fetch_template('memberinfo_block_godtube') . '";');}]]></phpcode>
    </plugin>
        <plugin active="1" executionorder="5">
            <title>Mini right side godtube for Member Profile - Cache Template</title>
            <hookname>cache_templates</hookname>
            <phpcode><![CDATA[$globaltemplates[] = 'memberinfo_block_godtube';]]></phpcode>
        </plugin>
      </plugins>

<templates>
   
    <template name="memberinfo_block_godtube" templatetype="template" date="" username="stangger5" version="2.1"><![CDATA[
<!-- godtube -->
<if condition="$userinfo[fieldi]">
<div id="godtube" class="tborder content_block">
    <h4 class="thead block_title">
        <a href="#top" class="collapse_gadget" onclick="return toggle_collapse('godtube')"><img id="collapseimg_godtube" src="images/buttons/collapse_generic.gif" alt="" border="0" /></a>
        <a name="albums"></a>
        <span class="block_name">godtube Video</span>
    </h4>
    <div class="block_content" id="collapseobj_godtube" style="">
       
    <div class="alt1 smallfont block_row"><if condition="$userinfo[fieldt]">Title:&nbsp;$userinfo[fieldt]</if></div>
           
    <div class="alt2 block_row block_footer"><object width="240" height="200"><param name="movie" value="http://www.godtube.com/view_video.php?viewkey=$userinfo[fieldi]"></param><param name="wmode" value="transparent"></param>
<embed src="http://www.godtube.com/view_video.php?viewkey=$userinfo[fieldi]$userinfo[fielda]" type="application/x-shockwave-flash" wmode="transparent" width="240" height="200"></embed></object>
    </div>
</div>
</div>
</if>
<!-- / godtube -->
   
    ]]></template>
   
</templates>
    <phrases>
    </phrases>
    <options>
    </options>
    <helptopics>
    </helptopics>
    <cronentries>
    </cronentries>
    <faqentries>
    </faqentries>
</product>



Does anyone know how to get this working for godtube.com? Thanks in advance.

DJ Hutch 08-16-2008 09:46 PM

I've installed, edit the permissions and stuff but it doesn't seem to be appearing on the profile?

EDIT: Scrap this, figured out the problem. I had mixed up the profile field numbers haha, woops! Thanks anyway. Good mod. Works perfectly.

Chadi 08-20-2008 05:09 AM

If someone could *please* figure out how to get this working as a godtube.com version that would be appreciated.

Heafycore 08-20-2008 01:44 PM

Works, perfectly. Thanks!

Wheezy 08-22-2008 07:17 PM

I had lots of trouble with the URL version of this, but this ID version seems to work splendidly. So thank you; I am enjoying it on my forum!

john102774 08-23-2008 08:55 AM

Installed and working great! Thanks!

vb3.7.2 pl2

mlthmp 08-23-2008 09:17 PM

Installed, works well! I have a question though.

Right now only Admins/GMs can see it (via permissions) my question is.. how does this impact a forum's bandwidth? I realize this may be a dumb question.. but when the mod streams from youtube.. is it having a big impact on our bandwidth as well? (before I open it to my registered users) can I expect a big hit to my bandwidth?

Digital Jedi 08-24-2008 01:10 AM

Video hosted on a different site than yours will have no effect on your bandwidth, because nothing being pulled from your server.

Chadi 08-26-2008 03:47 AM

Would appreciate getting help on a godtube.com version of this.

yotsume 08-31-2008 02:20 PM

Installed... works great!

CLUB AMPLE 09-08-2008 12:28 PM

Is that possible to do.... add 3 more input fields....and somehow modify?

Chadi 09-08-2008 08:37 PM

Anyone know how to get this working for Godtube.com?

macc 09-09-2008 02:17 AM

hello!

now i get message on my videos - " we are sorry video is not availble" before it works fine ...and all videos works on youtube site !

some solutions?

have vbulletin 3.7.3 PL1


regards

macc

Digital Jedi 09-10-2008 02:15 AM

That's not related to the mod. YouTube was doing maintenance to their site and all embeds didn't work during that time period. Also make sure that the author of the video doesn't have ending disabled.

FLMom 09-13-2008 03:16 PM

This is really cool and works perfectly!!! Thanks so much!

Chadi 09-17-2008 05:00 PM

Can someone please try to figure out how to get this working strictly for godtube.com ? I'd appreciate it. I tried to figure it out, and failed unfortunately.

Heafycore 10-07-2008 07:39 PM

Ive followed the instructions correctly, but for some reason the video doesn't actually show up or load on the profile, anyone know why?
I've tried the ID of different YouTube vids, and I've tried the whole links.
Help?

ArnyVee 10-23-2008 05:58 PM

Thank you! Works perfectly! :D

bongwater 10-25-2008 01:07 PM

installed on 3.8.0 beta 1 and works great. (live link HERE)

goxy63 11-09-2008 06:48 PM

This is noob question :)
How this mod will affect my server stream , when someone clicks on video displayed in profile ...it will just redirect user to youtube...???

Thanks for answering to 1 noob guy as thats what Iam

;)

Digital Jedi 11-10-2008 12:01 AM

Quote:

Originally Posted by goxy63 (Post 1662498)
This is noob question :)
How this mod will affect my server stream , when someone clicks on video displayed in profile ...it will just redirect user to youtube...???

Thanks for answering to 1 noob guy as thats what Iam

;)

It will have no effect. It just embeds a video from YouTube.

effeff70 11-15-2008 05:18 PM

Thats great man, my users like it and me too....thx a lot

black_diamond 11-19-2008 11:03 PM

Works a treat for me:cool: thanks very much:up:

GlamRockTalk 11-20-2008 03:18 AM

This mod ROCKS! :D

Thanks Stangger

Chance4Today 11-20-2008 01:58 PM

Quote:

Originally Posted by macc (Post 1617885)
hello!

now i get message on my videos - " we are sorry video is not availble" before it works fine ...and all videos works on youtube site !

some solutions?

have vbulletin 3.7.3 PL1


regards

macc

Could be that it has been disabled from youtube would be my guess. If the embedding has been disabled there than it won't work on your site.

Hey Strange My friend. I have having a issue :rolleyes:

This is a simple hack to install and have done it but tried to do it on my sobernclean site and it isn't showing up in the usercp and not sure what is going on but have double checked everything ... the thing I am wondering is I am using the 3.8.3 beta on that site could that be a issue? Thanks Oh yeah also having another issue on IBPro arcade but posted on that thread if ya have a chance you can take a peek LOL

Chance4Today 11-20-2008 02:01 PM

Disregard LMMFAO it's too early and not enough coffee

Thanks nominated

BobbyDiesel 12-02-2008 06:26 PM

Quote:

Originally Posted by Heafycore (Post 1639698)
Ive followed the instructions correctly, but for some reason the video doesn't actually show up or load on the profile, anyone know why?
I've tried the ID of different YouTube vids, and I've tried the whole links.
Help?


Same here. Anything?

goxy63 12-04-2008 02:45 AM

Just blank in profile, I checked everything but....

Thanks for help in advance

Got it...wrong link...just dumb noob thats it :D

Nephalim 01-11-2009 11:57 PM

does this work with 3.8.0

Aclikyano 01-14-2009 02:58 PM

gonna try this...


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

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.01649 seconds
  • Memory Usage 1,835KB
  • 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
  • (3)bbcode_code_printable
  • (6)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