vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Major Additions - vBTube LE 2.1.1 Media Library UPDATE vBulletin 4.2.x (https://vborg.vbsupport.ru/showthread.php?t=279864)

tbworld 07-06-2013 07:40 AM

I would go to the authors website. You are more likely to get assistance there. You might also want to state what version of vbulletin you are running and a link to your board. It doesn't sound like a very serious problem to me. Take care :)

GameOverViper 07-10-2013 06:48 AM

I'm using 4.2.0 and everything seems to have worked fine, apart from when I submit a video it pulls a .jpg file and when I try to enter it, it tells me this error message.

Please upload only Image Type Files! (jpg, gif, png)

The image url it pulled from YouTube is - http://img.youtube.com/vi/kJgqc9h2jV4/default.jpg

RichieBoy67 08-01-2013 08:18 PM

My client has the pro version. When he posts a Facebook comment it pulls data from the wrong post.

We did post at the site but have not had a reply in days so I am asking here if anyone has had this issue.

210665 08-12-2013 06:09 PM

I now have it installed and you tube can I upload posts.
Now my question: Can I also upload movies from the server and do exactly what I need

-------------------------------------------------------------------------------------------------------------------

Ich habe es jetzt installiert und You Tube Beiträge kann ich hochladen.
Jetzt meine Frage: Kann ich hier auch Filme vom Server hochladen und was muss ich genau machen

Slipperyduck 10-10-2013 07:16 PM

Security update to 4.2.2 results in errors:

Warning: Function eregi() is deprecated in ..../vbtube_functions.php on line 59

Warning: Function eregi_replace() is deprecated in ..../vbtube_functions.php on line 69

Warning: Function eregi_replace() is deprecated in ..../vbtube_functions.php on line 73

Warning: Function eregi_replace() is deprecated in ..../vbtube_functions.php on line 77

Warning: Function eregi_replace() is deprecated in ..../vbtube_functions.php on line 81

ozzy47 10-10-2013 07:33 PM

1 Attachment(s)
Make a copy of that file, Or rename it vbtube_functions_original then upload this file.

SPEEDKILLZ 10-12-2013 05:40 AM

Quote:

Originally Posted by GameOverViper (Post 2433020)
I'm using 4.2.0 and everything seems to have worked fine, apart from when I submit a video it pulls a .jpg file and when I try to enter it, it tells me this error message.

Please upload only Image Type Files! (jpg, gif, png)


The image url it pulled from YouTube is - http://img.youtube.com/vi/kJgqc9h2jV4/default.jpg

Any fix for this? This is what i am also getting

Slipperyduck 10-12-2013 01:04 PM

Depreciated PHP commands problems fixed with the following (edit your vbtube_functions.php file):


FIND:
Code:


if(!(eregi("vbtube", $text))) exit;

REPLACE WITH:
Code:


if(!(preg_match("%vbtube%i", $text))) exit;




FIND:
Code:


function vbtube_resize_player($link,$autotube_size,$autotube_size_height)
{
        if(eregi("sevenload.", $link))



REPLACE WITH:
Code:


function vbtube_resize_player($link,$autotube_size,$autotube_size_height)
{
        if(preg_match("%sevenload.%i", $link))




FIND:
Code:


                //$autotube_size="100%";
                $regexp_search = 'width=".{3}"';
                $regexp_replace = 'width="'.$autotube_size.'"';
                $autostart = preg_replace($regexp_search, $regexp_replace, $link);
               
                $regexp_search = 'height=".{3}"';
                $regexp_replace = 'height="'.$autotube_size_height.'"';
                $link = preg_replace($regexp_search, $regexp_replace, $autostart);       
               
                $regexp_search = 'width:.{3}';
                $regexp_replace = "width:$autotube_size";
                $autostart = preg_replace($regexp_search, $regexp_replace, $link);       
               
                $regexp_search = 'height:.{3}';
                $regexp_replace = "height:$autotube_size_height";
                $link = preg_replace($regexp_search, $regexp_replace, $autostart);

REPLACE WITH:
Code:

                //$autotube_size="100%";
                $regexp_search = 'width=".{3}"';
                $regexp_replace = 'width="'.$autotube_size.'"';
                $autostart = preg_replace('%'.$regexp_search.'%', $regexp_replace, $link);
               
                $regexp_search = 'height=".{3}"';
                $regexp_replace = 'height="'.$autotube_size_height.'"';
                $link = preg_replace('%'.$regexp_search.'%', $regexp_replace, $autostart);       
               
                $regexp_search = 'width:.{3}';
                $regexp_replace = "width:$autotube_size";
                $autostart = preg_replace('%'.$regexp_search.'%', $regexp_replace, $link);       
               
                $regexp_search = 'height:.{3}';
                $regexp_replace = "height:$autotube_size_height";
                $link = preg_replace('%'.$regexp_search.'%', $regexp_replace, $autostart);

FIND:
Code:


$link = eregi_replace("autoplay=1","autoplay=0",$link);

REPLACE WITH:
Code:


$link = preg_replace("%autoplay=1%i","%autoplay=0%i",$link);


That should (hopefully) fix it. - please correct me if I'm wrong - I'm not an expert

ozzy47 10-12-2013 01:56 PM

That should work, I posted the new file in post #316 two posts above yours. :)

SPEEDKILLZ 10-12-2013 02:19 PM

Quote:

Originally Posted by ozzy47 (Post 2452608)
That should work, I posted the new file in post #316 two posts above yours. :)



Is this directed towards me? If so do i just need to add your file or do the code? Thanks


All times are GMT. The time now is 12:22 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.02866 seconds
  • Memory Usage 1,750KB
  • 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
  • (8)bbcode_code_printable
  • (2)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