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

Reply
 
Thread Tools
Video Club (YouTUBE, Vimeo, DailyMotion etc) Details »»
Video Club (YouTUBE, Vimeo, DailyMotion etc)
Version: 1.4.1, by paradoxG(r)eek paradoxG(r)eek is offline
Developer Last Online: Aug 2021 Show Printable Version Email this Page

Category: Major Additions - Version: 4.2.4 Rating:
Released: 04-04-2017 Last Update: 04-29-2017 Installs: 11
DB Changes Uses Plugins Auto-Templates
Additional Files Translations  
No support by the author.

Since 2006 I was serving community members with my Free Mods
But as this site will starts operating by the company,
I'm no willing to support them

** File Removed **


Video Club

Fetch Videos from many Providers with URL
since ver. 1.2.0 you can also embed any valid video code

Things to know !!!
  • If your site is SSL and you try to show a video from a non SSL site, video should not works.
  • If you can't show YouTUBE videos, most probably your API key is wrong. Be sure that you've setup correct the API key and it is ver. 3. Here is a good tutorial.
  • If you see strange characters in the text, the problem is character encoding. Even in English, if you're using iso-8859-1 but the video provider uses UTF-8 should have some problems. But you can edit the text, so not so important issue.

Demo Installation
demouser1 / demopass1
demouser2 / demopass2
demouser3 / demopass3
PS: In my demo I've setup Disqus as commenting system. But it's up to you to setup Threads instead.

1.- What's this?

Video Club is a Video Gallery mod for your community. It's easy to use and has a nice interface. User just needs to enter a link to the video and set a category. All others done automatically. For comments supports Thread per video but also the well known Disqus external commenting system. I strongly recommend you to use Disqus as it's very social and soon you'll see an increment amount of pageviews.

2.- Video Providers (Websites)
  • 5min.com
  • Blip.tv
  • Break.com
  • Collegehumor.com
  • Dailymotion.com
  • Funnyordie.com
  • Gametrailers.com
  • Hulu.com
  • Justin.tv
  • Metacafe.com
  • MySpace.com
  • Ustream.tv
  • Veoh.com
  • Vimeo.com
  • Screen.Yahoo.com
  • YouTUBE.com
  • ver. 1.2.0 NEW!! Now you can add manual any video code your want
3.- Comments

Not only one but 3 types for comments (plus an option to not use comments)
  • Thread
  • Disqus
  • Ajax comments
4. Installation
  1. Upload all files from upload folder to the folder where your vBulletin 4.2 is installed
  2. CMOD 777 the directories
    1. videoclub/thumbs
    2. videoclub/thumbs/tmp
  3. Login to your admincp and import the file product-videoclub.xml
  4. Set Usergroup permissions
  5. Set General Options according to your needs
    1. ** MOST IMPORTANT SETTINGS **
    2. Get a YouTUBE API key from https://console.developers.google.co...is/credentials
    3. Decide if you'll use Threads for comments or Disqus. If you'll use Disqus set your site at: https://disqus.com/admin/create/
    4. Set Server Path to Uploads !!!
  6. If you want modify PM templates but don't touch anything between {}
  7. Set the Categories
5.- PRO Version

After many years I decided to use PRO version not as a way not to earn money (I don't expect to have more than 10 sales), but rather to find a way to pay for some commercial scripts that I want to use in the PRO version (Distribution License). The follow features will be in the PRO version:
  • Extra Providers
    • Facebook
    • LiveLeak.com
    • OpenLoadMovies.com
  • Videoplayer with support for prevideo ads
  • Better carousel for latest videos at top
  • Video search in multiple providers
  • Many notifications
  • Brand free

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
2 благодарности(ей) от:
blind-eddie, elsa23

Comments
  #282  
Old 04-16-2017, 03:14 PM
lillylissy's Avatar
lillylissy lillylissy is offline
 
Join Date: Feb 2006
Location: Stuttgart / Germany
Posts: 95
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by paradoxG(r)eek View Post

But let's start with a simple notice. At headinclude you're loading 3 times the same jquery file. That's not correct. So, find in headinclude template:
Code:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script type="text/javascript" src="https://baeckerei-lieb.de/nivo-slider/js/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="https://baeckerei-lieb.de/nivo-slider/js/jquery.nivo.slider.js"></script> 
<script type="text/javascript" src="https://baeckerei-lieb.de/nivo-slider/js/jquery.nivo.slider.pack.js"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
and replace it with:
Code:
<vb:if condition="THIS_SCRIPT !== 'video'">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
</vb:if>
<script type="text/javascript" src="https://baeckerei-lieb.de/nivo-slider/js/jquery.nivo.slider.js"></script> 
<script type="text/javascript" src="https://baeckerei-lieb.de/nivo-slider/js/jquery.nivo.slider.pack.js"></script>
I also have some doubts if you really need the slider.pack but for the moment let it there. In my text I didn't loaded it and the slider was working fine.

Please let me know.
I think I load it in header, not in headinclude. Only css load in headinclude.
Reply With Quote
  #283  
Old 04-16-2017, 03:21 PM
lillylissy's Avatar
lillylissy lillylissy is offline
 
Join Date: Feb 2006
Location: Stuttgart / Germany
Posts: 95
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What I have to do? Or would you like admin-access to make an overview for you?
Reply With Quote
  #284  
Old 04-16-2017, 03:21 PM
paradoxG(r)eek paradoxG(r)eek is offline
 
Join Date: Feb 2017
Location: Thessaloniki, Greece
Posts: 297
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by lillylissy View Post
I think I load it in header, not in headinclude. Only css load in headinclude.
Normally js files must load in footer, unless if there is a notice to load them in < head > section. But header.tpl is just for html code within < body > section. JS files must load in headinclude. Not that you can't include anywhere, but the normal (after footer section) is headinclude.
Reply With Quote
  #285  
Old 04-16-2017, 03:23 PM
paradoxG(r)eek paradoxG(r)eek is offline
 
Join Date: Feb 2017
Location: Thessaloniki, Greece
Posts: 297
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by lillylissy View Post
What I have to do? Or would you like admin-access to make an overview for you?
If there is trust, PM me admin details to make any neccessary changes.
Reply With Quote
  #286  
Old 04-16-2017, 03:32 PM
paradoxG(r)eek paradoxG(r)eek is offline
 
Join Date: Feb 2017
Location: Thessaloniki, Greece
Posts: 297
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BadgerDog View Post
Chris..
Also, the icons are very small and very neutral in color. Is there some way of using "tool tips" so a small pop-up occurs to say what they mean, plus perhaps have a color that standads out better?

Just some thoughts..

Regards,
Doug
Please upload the attached xml and check:
  1. If the provider list on sidebar appears ok (font color).
  2. I've changed the icons by removing opacity which causes that difficult to see issue.
Reply With Quote
  #287  
Old 04-16-2017, 05:38 PM
BadgerDog BadgerDog is offline
 
Join Date: Oct 2006
Location: Toronto
Posts: 1,789
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by paradoxG(r)eek View Post
Please upload the attached xml and check:
  1. If the provider list on sidebar appears ok (font color).
  2. I've changed the icons by removing opacity which causes that difficult to see issue.
See attached...

1. Still don't see anything except square boxes anytime home screen for Video Club starts up... they do appear after screen refresh (which is awkward) and after someone goes away and come back to the home screen. (see attached)

2. Provider list now appears in black and looks fine. Note: Blue/Grey test still appears under Top Videos listing. (see pic)

3. is framing around slider pics supposed to be white?

4. Pop up tool tips for views/likes/comments are fantastic !!!!!

Looking better at each iteration .. :up:

Regards,
Doug
Reply With Quote
  #288  
Old 04-16-2017, 05:48 PM
paradoxG(r)eek paradoxG(r)eek is offline
 
Join Date: Feb 2017
Location: Thessaloniki, Greece
Posts: 297
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BadgerDog View Post
See attached...

3. is framing around slider pics supposed to be white?

Regards,
Doug
Unzip the attached file and upload jquery.bxslider.css to videoclub/css/
Let me know if it works.
Reply With Quote
  #289  
Old 04-16-2017, 05:56 PM
BadgerDog BadgerDog is offline
 
Join Date: Oct 2006
Location: Toronto
Posts: 1,789
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by paradoxG(r)eek View Post
Unzip the attached file and upload jquery.bxslider.css to videoclub/css/
Let me know if it works.
Still white.. (see attached)

Regards,
Doug
Reply With Quote
  #290  
Old 04-16-2017, 05:58 PM
paradoxG(r)eek paradoxG(r)eek is offline
 
Join Date: Feb 2017
Location: Thessaloniki, Greece
Posts: 297
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BadgerDog View Post
See attached...

1. Still don't see anything except square boxes anytime home screen for Video Club starts up... they do appear after screen refresh (which is awkward) and after someone goes away and come back to the home screen. (see attached)
That's why I said to clear browser's cache. Seems that something kept there. Also PM access details to your site with permissions to access video pages.

Quote:
Originally Posted by BadgerDog View Post
Note: Blue/Grey test still appears under Top Videos listing. (see pic)
This does not seems to be from my style but from your original style. Maybe your style does not supports sidebar? The colors that you're seeing there are the colors of the Default vb Style.
Reply With Quote
  #291  
Old 04-16-2017, 06:02 PM
paradoxG(r)eek paradoxG(r)eek is offline
 
Join Date: Feb 2017
Location: Thessaloniki, Greece
Posts: 297
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BadgerDog View Post
Still white.. (see attached)

Regards,
Doug
Give me the link to your video pages. Strange that it does not works. I set transparent as slider color which means that normally it must shows the page's default background color.

Unless if you didn't clear browser's cache. Try to clean browser cache after any new design change.
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 10:59 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.05178 seconds
  • Memory Usage 2,335KB
  • 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
  • (2)bbcode_code
  • (10)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
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (2)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • 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