Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.7 > vBulletin 3.7 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Video-Directory Details »»
Video-Directory
Version: 1.1.0 RC 2, by Surviver Surviver is offline
Developer Last Online: May 2020 Show Printable Version Email this Page

Category: Major Additions - Version: 3.7.x Rating:
Released: 09-28-2008 Last Update: 11-14-2008 Installs: 350
DB Changes Uses Plugins Auto-Templates
Additional Files Translations Is in Beta Stage  
No support by the author.


What is this?

This add on gives your users the possibility to collect their favourite videos from some video-webpages (supported at the moment: MyVideo, YouTube, Sevenload and Metacafe) and to provide them in the forum. The videos can be commented and rated.

The Administrator has many possibilities of settings and can create video-categories and administrate the video-directory.

List of features:
  • Completely integrated in vBulletin
  • Many possibility of settings for the Administrator
    • Many possibilities of settings
    • permissions of usergroups
    • Administration of categories
    • Administration of video-webpages
      • Incl. import and export
  • Very simple installation
  • Homepage can be configured easily
  • Videos are integrated in the forum
    • Videos can be voted with AJAX
    • Commets to videos can be posted
    • Videos can be reported
    • User can see other members watching the video at the same time
  • Simple search-function
  • RSS-Feed of videos
  • Advanced WOL-integration
  • Advanced vBSEO-integration
Installation:
  1. Upload all files from the directory "root" (Keep the structure of folders)
  2. The directory of videothumbnails and includes/videoserviceapi needs 777 permissions
  3. Import the product-videodirectory.xml from the admin-controllpanel
  4. After importing the product DON'T close the window, follow the installiton instructions!
History:
  • 1.0.0 RC 1 - First release
  • 1.0.0 RC 2 - Improvements and correcting some errors - many thanks to Hapi for reworking the templates!
  • 1.0.0 RC 3 - Correting some bugs: 38409, 38496, 38548, 38611
  • 1.1.0 Beta 1 - "Major Release"
    • Correcting some bugs
    • New: Search function
    • New: Reporting funvtion for videos
    • New: Import/export funtion for Video-Webpages
    • New: Improvements for guests
    • New: Best voted videos on Mainpage
    • New: vBSEO-Integration
    • New: Simplified installation
  • 1.1.0 Beta 2 - Small Bugfix-Release
  • 1.1.0 RC 1 - New Feature (Members who are watching the same video at video details page), Bugfixes (Missing File for comments added, vBSEO CRR fixed)
  • 1.1.0 RC 2 - Added two new videohosters (sevenload and metacafe), added rss feed, added thumbnail-preview when adding a video, MyVideo Class optimized, some bugs fixed
Roadmap for Version 1.2.0:
  • Tag-function for videos
  • Favourite Videos (AJAX)
  • Watchlist (AJAX)
  • [s]User watching the same video at the moment[/s] - Added in Version 1.1.0 RC 1
  • Video-comments per AJAX, to avoid reload
  • "Video-Profile" for user
  • Moderation
  • [S]New Videos in forumhome[/S] (See addons)
  • [s]RSS-Feed for Videos[/s] - Added in Version 1.1.0 RC 2
  • Integration in statistic-block in profile
Developer notes:

Do you want to enhance the video-directory, but some hooks are missing? Do you want to enhance the templates and you need some template-hooks? No Problem! Send a PM and the hooks will be integrated in the next version!

Developer-Blog:

Feel free to check out our Developer-Blog at vBPoint.org!

Supporters / CoAuthors

Show Your Support

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

Comments
  #382  
Old 11-22-2008, 06:32 PM
KW802's Avatar
KW802 KW802 is offline
 
Join Date: Jul 2003
Location: A galaxy far, far away...
Posts: 1,450
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Speaking of vBSEO...

In the ACP Options, when checking to see if the "vBSEO-Integration" box should be displayed or not, instead of checking just for the presence of VBSEO_ENABLED it may be better to also check to see if the variable is true or false. That way people who have vBSEO disabled will not get the error message.

So instead of checking for just...
Code:
if (defined('VBSEO_ENABLED')  ...
... check instead for:
Code:
if (defined('VBSEO_ENABLED') && VBSEO_ENABLED ...
Reply With Quote
  #383  
Old 11-22-2008, 08:59 PM
raja811 raja811 is offline
 
Join Date: Oct 2006
Posts: 390
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

please solve this

Database error in vBulletin 3.7.3:


Invalid SQL:
CREATE TABLE vb_video (
videoid int(10) unsigned NOT NULL auto_increment,
title varchar(255) NOT NULL,
description mediumtext NOT NULL,
videourl varchar(255) NOT NULL,
videocategoryid int(10) unsigned NOT NULL default '0',
dateline int(10) NOT NULL default '0',
userid int(10) unsigned NOT NULL default '0',
videoservice varchar(250) NOT NULL,
videoidservice varchar(250) NOT NULL,
views int(10) unsigned NOT NULL default '0',
PRIMARY KEY (videoid)
);

MySQL Error : Table 'vb_video' already exists
Error Number : 1050
Request Date : Saturday, November 22nd 2008 @ 03:54:54 PM
Error Date : Saturday, November 22nd 2008 @ 03:54:55 PM
Script : http://www.mysite.com/forum/admincp/...=productimport
Referrer : http://www.mysite.com/forum/admincp/...?do=productadd
IP Address : 79.98.223.235
Username : rjas
Classname : vB_Database
MySQL Version : 5.0.67-log
Reply With Quote
  #384  
Old 11-22-2008, 11:42 PM
momo2 momo2 is offline
 
Join Date: Feb 2007
Posts: 327
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok thanks will try that for seo
Reply With Quote
  #385  
Old 11-23-2008, 12:57 AM
teamsupra teamsupra is offline
 
Join Date: Aug 2003
Posts: 73
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I added the VBSEO code to Custom Rewrite Rules but the only thing that is being rewritten is video.php to /videos/ help
Reply With Quote
  #386  
Old 11-23-2008, 03:41 AM
momo2 momo2 is offline
 
Join Date: Feb 2007
Posts: 327
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok i got the error when posting a link, like i said it will post it but this error comes, than post is made,

it comes so fast so its hard to read it but it seems it h
Warning: fopen([path]/videothumbnails/YouTube/TePgZWYWF0Q.jpg) [function.fopen]: failed to open stream: Permission denied in [path]/includes/videoserviceapi/class_youtube.php on line 103

Warning: fwrite(): supplied argument is not a valid stream resource in [path]/includes/videoserviceapi/class_youtube.php on line 104

Warning: fclose(): supplied argument is not a valid stream resource in [path]/includes/videoserviceapi/class_youtube.php on line 105
as permission to tumbnail
Reply With Quote
  #387  
Old 11-23-2008, 03:59 AM
momo2 momo2 is offline
 
Join Date: Feb 2007
Posts: 327
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok i got it fixed, so sorry for all replies all text are gone the new upload after fixing the 777 to all folders including inside, now it shows the tumbnail, excellent hack........
Reply With Quote
  #388  
Old 11-23-2008, 05:29 AM
Surviver's Avatar
Surviver Surviver is offline
 
Join Date: Feb 2006
Location: Bonn, Germany
Posts: 382
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by raja811 View Post
please solve this

Database error in vBulletin 3.7.3:


Invalid SQL:
CREATE TABLE vb_video (
videoid int(10) unsigned NOT NULL auto_increment,
title varchar(255) NOT NULL,
description mediumtext NOT NULL,
videourl varchar(255) NOT NULL,
videocategoryid int(10) unsigned NOT NULL default '0',
dateline int(10) NOT NULL default '0',
userid int(10) unsigned NOT NULL default '0',
videoservice varchar(250) NOT NULL,
videoidservice varchar(250) NOT NULL,
views int(10) unsigned NOT NULL default '0',
PRIMARY KEY (videoid)
);

MySQL Error : Table 'vb_video' already exists
Error Number : 1050
Request Date : Saturday, November 22nd 2008 @ 03:54:54 PM
Error Date : Saturday, November 22nd 2008 @ 03:54:55 PM
Script : http://www.mysite.com/forum/admincp/...=productimport
Referrer : http://www.mysite.com/forum/admincp/...?do=productadd
IP Address : 79.98.223.235
Username : rjas
Classname : vB_Database
MySQL Version : 5.0.67-log
Why should I solve this?

That's not a general problem of this hack
I don't know, why the table already eyists in your database

Quote:
Originally Posted by teamsupra View Post
I added the VBSEO code to Custom Rewrite Rules but the only thing that is being rewritten is video.php to /videos/ help
Did you add the rules in the corect order?

Quote:
Originally Posted by momo2 View Post
ok i got the error when posting a link, like i said it will post it but this error comes, than post is made,

it comes so fast so its hard to read it but it seems it h
Warning: fopen([path]/videothumbnails/YouTube/TePgZWYWF0Q.jpg) [function.fopen]: failed to open stream: Permission denied in [path]/includes/videoserviceapi/class_youtube.php on line 103

Warning: fwrite(): supplied argument is not a valid stream resource in [path]/includes/videoserviceapi/class_youtube.php on line 104

Warning: fclose(): supplied argument is not a valid stream resource in [path]/includes/videoserviceapi/class_youtube.php on line 105
as permission to tumbnail
Quote:
Originally Posted by momo2 View Post
ok i got it fixed, so sorry for all replies all text are gone the new upload after fixing the 777 to all folders including inside, now it shows the tumbnail, excellent hack........
Reply With Quote
  #389  
Old 11-23-2008, 11:16 AM
abhimation's Avatar
abhimation abhimation is offline
 
Join Date: Dec 2006
Posts: 53
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

** INSTALLED ** and its running smooth. Few queries -

1) Could anyone add other hosts like jumpcut, vimeo etc?
2) On the Video Home - Can i change the text "Categories alltogether" to "Categories" only ?
Reply With Quote
  #390  
Old 11-23-2008, 12:41 PM
Jaxel Jaxel is offline
 
Join Date: Sep 2005
Posts: 1,160
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I use TFSEO, not VBSEO... any compatibility with this?

And oh, if you wanna use my forum as a demo, I'm okay with that...

http://www.8wayrun.com/video.php?styleid=3
Reply With Quote
  #391  
Old 11-23-2008, 03:05 PM
Surviver's Avatar
Surviver Surviver is offline
 
Join Date: Feb 2006
Location: Bonn, Germany
Posts: 382
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by abhimation View Post
** INSTALLED ** and its running smooth. Few queries -

1) Could anyone add other hosts like jumpcut, vimeo etc?
2) On the Video Home - Can i change the text "Categories alltogether" to "Categories" only ?
1.) That's possbible, but not very easy
2.) Yes, search the phrases for this peace of text

Quote:
Originally Posted by Jaxel View Post
I use TFSEO, not VBSEO... any compatibility with this?

And oh, if you wanna use my forum as a demo, I'm okay with that...

http://www.8wayrun.com/video.php?styleid=3
Sorry, i don't know TFSEO
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 04:52 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.05611 seconds
  • Memory Usage 2,329KB
  • Queries Executed 26 (?)
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
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)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