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)
-   -   Major Additions - vBTubePRO - Lite Version 1.0.4 Updated and FIXED (https://vborg.vbsupport.ru/showthread.php?t=168658)

mystic10 07-24-2008 07:42 PM

how long does tapblefix.php take...how do i know its done sorry for such silly question

MuhammadC 07-25-2008 04:48 PM

Quote:

Originally Posted by soundbarrierpro (Post 1578389)
Check it out. All new script. Allows for media upload/convert to .flv and embed

http://www.vbyes.com/

I don't see any way to upload a video. Only "Add video."

Thanks.

Edit: I found it now...

Bustah 07-28-2008 03:09 AM

First off, this hack looks amazing.

But I am having troubles with this. Its saying no such file found when I try to add a video. The link to my forums is thegwa.org. I'm sure all files are there, but for some reason it just won't work.

I'm thinking about getting the PRO version in the future, because the upload would suit my site very well.

Any and all help would be appreciated.

soundbarrierpro 07-28-2008 12:32 PM

Quote:

Originally Posted by Bustah (Post 1585652)
First off, this hack looks amazing.

But I am having troubles with this. Its saying no such file found when I try to add a video. The link to my forums is thegwa.org. I'm sure all files are there, but for some reason it just won't work.

I'm thinking about getting the PRO version in the future, because the upload would suit my site very well.

Any and all help would be appreciated.

Are you using a supported site which vbtubepro will allow to auto embed? Are you using the link from the browser address bar? Or the embed code?

thebands 07-28-2008 01:22 PM

First off, great hack, I have it installed on my board. I'm running vBulletin 3.7.2.

I have searched through all the posts but did not find the answer. My question is this. Can Mods with "Moderate vbTubepro" turned "on" Approve/Reject video submissions?

I have set up my Mods to moderate the video submissions but when they log into the ModCP the vbtubepro option settings are not there. Am I missing something?

Here's my site:

http://www.theblueandsilver.com/forums/vbtubepro.php

soundbarrierpro 07-28-2008 02:47 PM

Quote:

Originally Posted by thebands (Post 1585954)
First off, great hack, I have it installed on my board. I'm running vBulletin 3.7.2.

I have searched through all the posts but did not find the answer. My question is this. Can Mods with "Moderate vbTubepro" turned "on" Approve/Reject video submissions?

I have set up my Mods to moderate the video submissions but when they log into the ModCP the vbtubepro option settings are not there. Am I missing something?

Here's my site:

http://www.theblueandsilver.com/forums/vbtubepro.php

That's a neat site, but I hate the Cowboys. Go Birds.

Bustah 07-28-2008 07:24 PM

Quote:

Originally Posted by soundbarrierpro (Post 1585920)
Are you using a supported site which vbtubepro will allow to auto embed? Are you using the link from the browser address bar? Or the embed code?

I don't even get far enough to do that. I click Add/Up Media and then it brings me to http://thegwa.org/vbtube_add.php?do=add, which is a page saying the file isn't found.

soundbarrierpro 07-28-2008 09:12 PM

Quote:

Originally Posted by Bustah (Post 1586177)
I don't even get far enough to do that. I click Add/Up Media and then it brings me to http://thegwa.org/vbtube_add.php?do=add, which is a page saying the file isn't found.

Somethings not right then. I'd venture to guess something was missed during setup. This is the first time I've ever seen that.

Bustah 07-29-2008 02:59 AM

I can't seem to find anything wrong with set up. I imported the product, and uploaded all of the files to their respective directories. Nothing seems to work. Help?

vbboarder 07-29-2008 09:48 PM

I spent a lot of time getting videos to display in the featuring, midbox, & rightbox, so I wanna share it with everyone to save you the trouble. :rolleyes: FYI, these boxes are used to display special videos like sponsors, featured, announcements, etc.

1. When you first install vbTubePro, its side admin menu does not appear until you refresh the page.

2. The instructions for adding videos to featuring, midbox, & rightbox do not work. The thread's example uses the object tag for embedding, but nothing shows. Solution: strip everything inside the object tag except for the embed tag (don't forget to remove the end object tag). For example, to get a Rihanna video (I luv Rihanna :D) from youTube, youTube provides the embed code on its page:

HTML Code:

<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/nXmJ-yaQAIw&hl=en&fs=1&rel=0"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/nXmJ-yaQAIw&hl=en&fs=1&rel=0" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object>
You need to change that to (noticed I changed the resolution to 250; 270 is the recommended max so the video does not break the sidebar layout):

HTML Code:

<embed src="http://www.youtube.com/v/nXmJ-yaQAIw&hl=en&fs=1&rel=0" type="application/x-shockwave-flash" allowfullscreen="true" width="250" height="250"></embed>
3. But the above embed code will only show in IE. To get it to show in Firefox & IE, you need to add: wmode="transparent" to the embed tag (ie: after height="250').

4. But now the code from #3 will still break your layout for the rightbox. To fix its layout, you need to surround the code with <tr><td> tags. So the above example with #3 & 4 hacks would be:

HTML Code:

<tr><td><embed src="http://www.youtube.com/v/nXmJ-yaQAIw&hl=en&fs=1&rel=0" type="application/x-shockwave-flash" allowfullscreen="true" width="250" height="250" wmode="transparent"></embed></td></tr>
5. And also the code from #3 will still break your layout for the midbox. To fix its layout, you need to surround the code with <table><tr> tags, and each video should be surrounded by a <td> tag. So the above example with #3 & 4 hacks would be:

HTML Code:

<table><tr><td><embed src="http://www.youtube.com/v/nXmJ-yaQAIw&hl=en&fs=1&rel=0" type="application/x-shockwave-flash" allowfullscreen="true" width="250" height="250" wmode="transparent"></embed></td></tr></table>
6. For the featuring box, you should surround the embed code with a <div> tag.

7. Note that using the embed tag is only necessary in the featuring, midbox, & rightbox. When creating an entry in vbTube, you can simply use the url address in your browser.

8. If the above codes do not work, you probably forgot to: 1. add trailing tags (ie: </td>, 2. remove the end object tag (</object) from the sample codes, 3. change the width & height to 270 or less, and/or 4. add wmode="transparent".

I know, all this editing sucks! It's poor layout/ template design, but at least it's fixable. Hope these tips help everyone. :rolleyes:


All times are GMT. The time now is 09:56 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.01850 seconds
  • Memory Usage 1,757KB
  • 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_html_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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