Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vBTube Details »»
vBTube
Version: 1.2.6, by efc9 efc9 is offline
Developer Last Online: Aug 2010 Show Printable Version Email this Page

Category: Major Additions - Version: 3.6.8 Rating:
Released: 10-12-2007 Last Update: 10-20-2007 Installs: 144
 
No support by the author.

Removed..

Show Your Support

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

Comments
  #42  
Old 10-13-2007, 09:08 PM
LPH2004 LPH2004 is offline
 
Join Date: Feb 2004
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by efc9 View Post
replace <insert search term> with your search term and that'll show the search instead of the featured videos on the frontpage.
Perfect !

Now when the page loads, only the Tablet PC and UMPC videos show immediately.

http://www.whatisnew.com/vBTube.php

Now I just need to figure out the menu on the left .. to add preselect search terms....
Reply With Quote
  #43  
Old 10-13-2007, 09:12 PM
zuMzuM zuMzuM is offline
 
Join Date: Dec 2005
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i have get this error

Code:
Warning: file() [function.file]: URL file-access is disabled in the server configuration in /vBTube/includes/view.php on line 12

Warning: file(http://www.youtube.com/watch?v=E4VMntSUskg) [function.file]: failed to open stream: no suitable wrapper could be found in /vBTube/includes/view.php on line 12

Warning: implode() [function.implode]: Bad arguments. in /vBTube/includes/view.php on line 13
Reply With Quote
  #44  
Old 10-13-2007, 09:17 PM
ogameclub ogameclub is offline
 
Join Date: Oct 2006
Location: T?rkiye
Posts: 99
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Bad searching, e.g: "fikrimin"
Reply With Quote
  #45  
Old 10-13-2007, 09:27 PM
JadedSouls's Avatar
JadedSouls JadedSouls is offline
 
Join Date: May 2007
Location: Canada, eh?
Posts: 88
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

So how is the problem with the bullets fixed when using FireFox?
Reply With Quote
  #46  
Old 10-13-2007, 09:28 PM
ragtek ragtek is offline
 
Join Date: Mar 2006
Location: austria, croatia
Posts: 1,630
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hi
for next version also delete define('NO_REGISTER_GLOBALS', 1); out from the php
it is not needed its for vb<3
Reply With Quote
  #47  
Old 10-13-2007, 09:39 PM
LPH2004 LPH2004 is offline
 
Join Date: Feb 2004
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This is a kludge but anyone wanting to change the categories in the left menu can go to the template for vBTube and modify.

For example, I added the following as menu options:
Code:
<img src="vBTube/img/12.gif" align="absmiddle">&nbsp;<a href="vBTube.php?do=search&search=UMPC">UMPC Videos</a>
Others may be added, too.
Reply With Quote
  #48  
Old 10-13-2007, 10:01 PM
LPH2004 LPH2004 is offline
 
Join Date: Feb 2004
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there a way to sort the videos?

such as by "sort=video_date_uploaded"
Reply With Quote
  #49  
Old 10-13-2007, 10:22 PM
efc9 efc9 is offline
 
Join Date: Jun 2006
Location: Ashton-Under-Lyne
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by zuMzuM View Post
i have get this error

Code:
Warning: file() [function.file]: URL file-access is disabled in the server configuration in /vBTube/includes/view.php on line 12

Warning: file(http://www.youtube.com/watch?v=E4VMntSUskg) [function.file]: failed to open stream: no suitable wrapper could be found in /vBTube/includes/view.php on line 12

Warning: implode() [function.implode]: Bad arguments. in /vBTube/includes/view.php on line 13
This is due to a setting on your server..

You can fix this by removing the following from vBTube/includes/view.php:
Code:
$videopage = file("http://www.youtube.com/watch?v=".$vidid);
$videopage = implode("", $videopage);
preg_match('/\/watch_fullscreen\?video_id=.*?&t=(.*?)"/', $videopage, $match);
$downloadurl = 'http://youtube.com/get_video.php?video_id='.$vidid.'&t='.$match[1];
only thing is the "download this video" link won't work for you right now, I've been looking at better ways of handling that anyways..
Reply With Quote
  #50  
Old 10-13-2007, 10:42 PM
LPH2004 LPH2004 is offline
 
Join Date: Feb 2004
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

To remove the double // in the Video URL

This is the original code in vBTube_view

Code:
value="$vboptions[homeurl]/$vidurl"
and this is what it should be: (remove the /)

Code:
value="$vboptions[homeurl]$vidurl"
Reply With Quote
  #51  
Old 10-13-2007, 10:48 PM
efc9 efc9 is offline
 
Join Date: Jun 2006
Location: Ashton-Under-Lyne
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by LPH2004 View Post
To remove the double // in the Video URL

This is the original code in vBTube_view

Code:
value="$vboptions[homeurl]/$vidurl"
and this is what it should be: (remove the /)

Code:
value="$vboptions[homeurl]$vidurl"
Good Spot, although I actually handled the fix slightly differently it was using a Server Request URI to get the url but it really didn't need too as the $vidid info was also available. think I was getting sleepy when I did that bit *lol*
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 01:58 PM.


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.06272 seconds
  • Memory Usage 2,314KB
  • Queries Executed 25 (?)
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
  • (8)bbcode_code
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)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
  • (11)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