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:

swapw 07-31-2008 02:58 AM

Is there a way for you to add some additional video sites to this? Great mod btw! :)

BarryGutshot 08-01-2008 12:24 PM

I am having a few problems in getting it to display for registered users. Admin users can see it but 99% of our members cant. Any ideas?

Mrdby 08-01-2008 01:32 PM

are you ging to have any specials on the pro edition price wise? I'm really interested in getting it.

teamgofast 08-01-2008 04:53 PM

id like to password protect a catagory, or make the catagory only visable to select user groups

muratmunich 08-03-2008 03:35 PM

Quote:

Originally Posted by BarryGutshot (Post 1589134)
I am having a few problems in getting it to display for registered users. Admin users can see it but 99% of our members cant. Any ideas?

Admincp/Usergroup edit ?

muratmunich 08-03-2008 03:38 PM

@ Mrdby check out http://www.vbtube.com for the paid Version

Jezlad 08-03-2008 09:56 PM

Is there any way to get rid of the image link colours?

The purple and blue bit?

FreshPrince 08-07-2008 07:45 AM

Does this program create automatic YouTube embeds in posts? Thanks

Digital Jedi 08-07-2008 02:52 PM

Quote:

Originally Posted by FreshPrince (Post 1593206)
Does this program create automatic YouTube embeds in posts? Thanks

I thik this is more like a gallery mod for videos seperate from the rest of the forum. You'd need AME for something like posts.

soundbarrierpro 08-07-2008 02:59 PM

Quote:

Originally Posted by Digital Jedi (Post 1593473)
I thik this is more like a gallery mod for videos seperate from the rest of the forum. You'd need AME for something like posts.

It actually looks and feels almost exactly like youtube. There is a seperate upload form which if you want to add any of the supported tube site videos. All you need is the browser address. No need for the embed code. However, it does also have an embed code option, as well as an upload of raw video, convert and embed hosted on your domain as well.

pcoskat 08-07-2008 03:52 PM

vBTube (paid version) is currently no working with YouTube videos (They show, but with an error message on them.) This problem is also at the vbTube site. Hopefully, it will be resolved shortly, as vbTube is a nifty program (when it works with YouTube.)

soundbarrierpro 08-07-2008 03:58 PM

I'm watching one right now on my site. As well as about 10 members I see in WOL. There's no problem with youtube right now.

EDIT.....I just watched the first two in your video section at your site. My company blocks youtube but I had them remove the block on my IP. Your company might be blocking it right now.

glennybee 08-07-2008 08:02 PM

I'm really keen to try this plugin but I'm finging it quite tedious to say the least!

I followed the readme and installed it, seemingly ok.
Allocated admin permissions to use the mod.
Created a category.
Added a video and url and could watch it ok.

Then I got a white screen next time I tried to use it. I don't think I done anything to cuase it but I may have.

I've tried uninstalling, removing files, deleting tables from the database, using the tablefix.php and vbtube_usergroup.php files but I always seem to end up with a white screen at the end.

Can anyone shed some light on this please?

Thanks :)

pcoskat 08-07-2008 08:27 PM

Quote:

Originally Posted by soundbarrierpro (Post 1593516)
My company blocks youtube but I had them remove the block on my IP. Your company might be blocking it right now.

i don't know what the problem is, but I know ^that's^ not it.

I think a patch is being written for this.

Mrdby 08-10-2008 01:14 PM

how bout adding a comment section for the free version?

soundbarrierpro 08-11-2008 10:57 AM

Quote:

Originally Posted by Mrdby (Post 1595432)
how bout adding a comment section for the free version?

That defeats the purpose of his business selling the script as a Pro version. Buy the pro version. That would be like asking vbulletin to give away their script for free. Do people want to buy it? No. Do people want it? Yes, so they buy it.

Mrdby 08-11-2008 11:38 AM

SOUND are you the coder? if not...log off and take a nap. Who wants to spend all this money on pro and might not like it? asking to add a simple comment section pretty much giving people a test drive. correct?

SSJB_7 08-11-2008 01:21 PM

basically the problem is i don't have categories.

HOW CAN I CREATE THEM???

SSJB_7 08-11-2008 01:33 PM

Perfect It's Working Now But How Can I Add It In Cmps?

soundbarrierpro 08-11-2008 03:05 PM

Quote:

Originally Posted by Mrdby (Post 1596166)
SOUND are you the coder? if not...log off and take a nap. Who wants to spend all this money on pro and might not like it? asking to add a simple comment section pretty much giving people a test drive. correct?

How bout no, I'm not the coder. I'm a customer who paid for the script. That's part of purchasing something. If you bought vbulletin and didn't like it, do you get your money back?

I can tell you it's excellent and well worth the money. It's just like anything else you are going to buy. You take a chance. All of the information you need is on vbyes.com in regard to what the script does. If you read it and don't like it, don't buy it.

PAKIDIL 08-13-2008 03:54 PM

i am having the problem please check the attachment only box is coming but no video in it .please help me in this thanks

muratmunich 08-20-2008 11:07 AM

Wich site you added here ?
Only add supported sites.

Daisyboo 08-27-2008 10:04 AM

I've just installed this, and its working perfectly.

Any updates as to when we can upload photobucket clips? That's the reason I added the mod, no photobucket clips = mod not needed :(

Daisyboo 08-27-2008 01:48 PM

Never mind I found another mod to use :)

PHILLYFAN 08-31-2008 04:20 PM

can someone tell me what this step means and what do i do?

Quote:

3. If this is a New installation then upload tablefix.php file to forums root and run it.
After runing it, delete the tablefix.php file from your Server.
says run it then delete. How do i run it and how do i know when to delete it lol

thanks

akulion 08-31-2008 09:50 PM

Quote:

Originally Posted by PHILLYFAN (Post 1611285)
can someone tell me what this step means and what do i do?



says run it then delete. How do i run it and how do i know when to delete it lol

thanks

just type the file location in ur browser address bar like: http://www.yoursite.com/tablefix.php

and afterwards just delete it

dirtyfeast 09-01-2008 02:12 AM

Do you need help installing your mods. They are so simple to do. I can show you my forum that my son showed me to do. I will help if you need it.

soundbarrierpro 09-01-2008 02:22 PM

Quote:

Originally Posted by PHILLYFAN (Post 1611285)
can someone tell me what this step means and what do i do?



says run it then delete. How do i run it and how do i know when to delete it lol

thanks


Upload it to your host via ftp then browse to it to run it ex. http://yoursite.com/tablefix.php. Then go back into ftp and delete it from your host.

iBaker 09-03-2008 09:07 PM

I was just about to install this but the vbtube.com site is down and has been for some time and my PM to the developer has gone unopened.

Does anyone know of a similar video clip library that allows you to do something similiar i.e. have a list of youtube etc clips listed and playable in your forums - free or paid?

Thanks for your time and I do hope that I am just jumping to conclusions here and panicking as I need something urgently

creativepart 09-03-2008 09:40 PM

I found vbtube.com closed too. I'm not sure what it up.


All times are GMT. The time now is 02: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.03480 seconds
  • Memory Usage 1,841KB
  • 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
  • (14)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (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