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 - Video-Directory (https://vborg.vbsupport.ru/showthread.php?t=192241)

Jaxel 12-25-2008 03:37 AM

I also have a question about this mod for Survivor...

Why do you store the uploader's username in the video table? Shouldn't the userid be enough? If you are reading the usernames from the video table, instead of the vbulletin user table, what happens when someone's username gets changed?

Jaxel 12-25-2008 05:33 AM

Okay... Merry Christmas Everyone! I have a whole bunch of new edits this time around... and I have made it easier by simply making them all into files for you...

The first file of course is "videoDirectory.XML"... this is simply my template edits. Just download the file and then import it into your style and you will get all my most recent updates. Don't forget of course to download the other files as some of my edits are dependant on them. This new version adds support for comment counting, and manages the new "isHD" variable I've created.

The next file is "video.php"... The core video script I have made a lot of changes to. Allow me to enumerate them...
  1. Added support for VIDEO-DETAILS-EMBED... this is the template I added so that the embedded video goes above the categories, isntead of to the right; this way there is more space for high definition videos.
  2. VideoBBCode now fetches the video title for bbcode embed tags.
  3. PageNav for comments on VIDEO-DETAILS now properly calls up construct_video_url. Why it was not doing this to begin with, when every other video url link was; is beyond me. SHAME ON YOU SURVIVOR! :D
  4. Per Survivor's hotfixes; RSS feeds are properly sanitized for IE and Opera.
  5. I have removed the "random" and "best rated" options for VIDEO-DETAILS. There is no reason to have these options for when people are viewing specific videos. I have left the "related video" options intact.
  6. The Delete Comment page is now constructed properly. It calls its own page, isntead of from the shell.

The new file this time around is "includes/functions_videodirectory.php"...
  1. The construct_video_bit function now has a new routine for handling the new isHD variable. Basically, if the video service for a video contains the word "HD" in it; it will mark the video as HD in the video_bit. (By default, I have this marking as a red "HD" tag). Now the HD tag will work for ANY high definition hosting service, as long as "HD" is in the $hostername (its inside the XML for the video-hoster).
  2. The construct_video_url and construct_category_url functions have been rewritten. For those of you using VBSEO, there will be no change for you. For everyone else, YOU NOW HAVE BASIC SEO! It's not perfect, its only for video and category links. You don't need TfSEO for this; it will work for anybody with Apache. To get the SEO functions, your .htaccess file must include the following:
    Code:

    RewriteEngine On

    #### VideoDirectory
    RewriteRule ^(.*)video-(.*)-v([0-9]+)(.*)&page=([0-9]+)$ video.php?do=viewdetails&videoid=$3&page=$5 [QSA,L]
    RewriteRule ^(.*)video-(.*)-c([0-9]+)(.*)&page=([0-9]+)$ video.php?do=viewcategory&categoryid=$3&page=$5 [QSA,L]
    RewriteRule ^(.*)video-(.*)-v([0-9]+)(.*)$ video.php?do=viewdetails&videoid=$3 [QSA,L]
    RewriteRule ^(.*)video-(.*)-c([0-9]+)(.*)$ video.php?do=viewcategory&categoryid=$3 [QSA,L]

  3. If you do not want to use the SEO functions (either you dont have an apache server, or dont have access to your .htaccess) delete or comment out the following line from video.php. You dont have to do this if you have VBSEO, since I set the priority to the function to search for VBSEO first, before it looks for this basic SEO... but you can delete the line if you so wish.
    Code:

    define('SEO_ENABLED', true);

Also included are new versions of YouTube.XML and YouTubeHD.XML.

Jaxel 12-25-2008 07:44 AM

Working on somethign new....

My video directory now has USER VIDEO PAGES....
http://www.8wayrun.com/video.php
http://www.8wayrun.com/video.php?do=viewuser&userid=1
http://www.8wayrun.com/video-jaxel-u1

I'll upload this and further fixes to the basic SEO stuff later... Now EVERY link to videos, categories, and users is SEO.

Surviver 12-25-2008 09:29 PM

Quote:

Originally Posted by ChipW (Post 1693169)
Just for anyone's information. I use 3.7 Beta 4. I changed the minimum version in the .xml file and it installed flawlessly and works great.

The only bug I have is no ACP links. But, I seen there was a video.php in the admincp folder and called it up. No problems.

Can't confirm. Did you refresh the ACP?

Quote:

Originally Posted by Jaxel (Post 1693190)
Survivor... the settings classes for videohoster XML files dont work... it gives an error in admincp/video.php

TriMe... I know what the problem is with your thumbnails not showing... send me a PM on AIM if you can.

What error exactly do you get?

Quote:

Originally Posted by Jaxel (Post 1693285)
I also have a question about this mod for Survivor...

Why do you store the uploader's username in the video table? Shouldn't the userid be enough? If you are reading the usernames from the video table, instead of the vbulletin user table, what happens when someone's username gets changed?

The Column is for guests. If a guest posts a video, he has no id - we have to store the username in the video table ;)

Quote:

Originally Posted by Jaxel (Post 1693304)
Okay... Merry Christmas Everyone! I have a whole bunch of new edits this time around... and I have made it easier by simply making them all into files for you...

The first file of course is "videoDirectory.XML"... this is simply my template edits. Just download the file and then import it into your style and you will get all my most recent updates. Don't forget of course to download the other files as some of my edits are dependant on them. This new version adds support for comment counting, and manages the new "isHD" variable I've created.

The next file is "video.php"... The core video script I have made a lot of changes to. Allow me to enumerate them...
  1. Added support for VIDEO-DETAILS-EMBED... this is the template I added so that the embedded video goes above the categories, isntead of to the right; this way there is more space for high definition videos.
  2. VideoBBCode now fetches the video title for bbcode embed tags.
  3. PageNav for comments on VIDEO-DETAILS now properly calls up construct_video_url. Why it was not doing this to begin with, when every other video url link was; is beyond me. SHAME ON YOU SURVIVOR! :D
  4. Per Survivor's hotfixes; RSS feeds are properly sanitized for IE and Opera.
  5. I have removed the "random" and "best rated" options for VIDEO-DETAILS. There is no reason to have these options for when people are viewing specific videos. I have left the "related video" options intact.
  6. The Delete Comment page is now constructed properly. It calls its own page, isntead of from the shell.

The new file this time around is "includes/functions_videodirectory.php"...
  1. The construct_video_bit function now has a new routine for handling the new isHD variable. Basically, if the video service for a video contains the word "HD" in it; it will mark the video as HD in the video_bit. (By default, I have this marking as a red "HD" tag). Now the HD tag will work for ANY high definition hosting service, as long as "HD" is in the $hostername (its inside the XML for the video-hoster).
  2. The construct_video_url and construct_category_url functions have been rewritten. For those of you using VBSEO, there will be no change for you. For everyone else, YOU NOW HAVE BASIC SEO! It's not perfect, its only for video and category links. You don't need TfSEO for this; it will work for anybody with Apache. To get the SEO functions, your .htaccess file must include the following:
    Code:

    RewriteEngine On

    #### VideoDirectory
    RewriteRule ^(.*)video-(.*)-v([0-9]+)(.*)&page=([0-9]+)$ video.php?do=viewdetails&videoid=$3&page=$5 [QSA,L]
    RewriteRule ^(.*)video-(.*)-c([0-9]+)(.*)&page=([0-9]+)$ video.php?do=viewcategory&categoryid=$3&page=$5 [QSA,L]
    RewriteRule ^(.*)video-(.*)-v([0-9]+)(.*)$ video.php?do=viewdetails&videoid=$3 [QSA,L]
    RewriteRule ^(.*)video-(.*)-c([0-9]+)(.*)$ video.php?do=viewcategory&categoryid=$3 [QSA,L]

  3. If you do not want to use the SEO functions (either you dont have an apache server, or dont have access to your .htaccess) delete or comment out the following line from video.php. You dont have to do this if you have VBSEO, since I set the priority to the function to search for VBSEO first, before it looks for this basic SEO... but you can delete the line if you so wish.
    Code:

    define('SEO_ENABLED', true);

Also included are new versions of YouTube.XML and YouTubeHD.XML.

Quote:

Originally Posted by Jaxel (Post 1693336)
Working on somethign new....

My video directory now has USER VIDEO PAGES....
http://www.8wayrun.com/video.php
http://www.8wayrun.com/video.php?do=viewuser&userid=1
http://www.8wayrun.com/video-jaxel-u1

I'll upload this and further fixes to the basic SEO stuff later... Now EVERY link to videos, categories, and users is SEO.

Very nice changes I hope, I'll be able to integrate some of them in Version 1.1.0. :)

But at the momenmt i don't have much time - i don't know when i'll be ready to release the next version ;)

I'm going to integrate the user's page in Version 1.2.0 :)

Regards
Surviver

PS: Sorry, that i replyed with a large delay - but as I said, i don't have much time at the moment ;)

puregraf 12-26-2008 02:33 AM

i tried to import the videoDirectory.xml file and my vbulletin said:

Importing Style, Please Wait...

[:]





vBulletin Message

This file was created using a different version of vBulletin from the one you are running.

Your version: 1.1.0 B 1
File version: 1.1.0 RC 2

Merry Christmas!!

Digital Jedi 12-26-2008 03:10 AM

Quote:

Originally Posted by puregraf (Post 1693746)
i tried to import the videoDirectory.xml file and my vbulletin said:

Importing Style, Please Wait...

[:]





vBulletin Message


This file was created using a different version of vBulletin from the one you are running.

Your version: 1.1.0 B 1
File version: 1.1.0 RC 2


Merry Christmas!!

Why are you trying to import a product through the Style Manager?

puregraf 12-26-2008 03:18 AM

because the directions said:

The first file of course is "videoDirectory.XML"... this is simply my template edits. Just download the file and then import it into your style

i imported as a product also and got same error

ArnyVee 12-26-2008 03:38 AM

Quote:

Originally Posted by Jaxel (Post 1693336)
Working on somethign new....

My video directory now has USER VIDEO PAGES....
http://www.8wayrun.com/video.php
http://www.8wayrun.com/video.php?do=viewuser&userid=1
http://www.8wayrun.com/video-jaxel-u1

I'll upload this and further fixes to the basic SEO stuff later... Now EVERY link to videos, categories, and users is SEO.

I'll wait until this is added...great job Jaxel :D

I was going to do the update that you posted, but I'll wait and do everything at once. Thanks for sharing and for working on making this great mod even better! :up:

Digital Jedi 12-26-2008 08:47 AM

Quote:

Originally Posted by puregraf (Post 1693762)
because the directions said:

The first file of course is "videoDirectory.XML"... this is simply my template edits. Just download the file and then import it into your style



i imported as a product also and got same error

Oh, your talking about Jaxel's modifications. When you get a style conflict error, you have to set it to Ignore Style Version to get it to import.

Jaxel 12-26-2008 11:38 AM

Okay... here is my newest build information...

In efforts to make this easier, I have completely rebuilt the product file and enclosed all my changes in a zip file. Extract the zip, upload all the new files, then import the product. This is NOT a replacement product; its an ehancement. You must have Survivor's version first. There are of course several important notes you should read before doing anything...
  1. For some reason, when you re-install the Video-Directory, it does NOT save your previous settings for "Limits". Make sure you go into Videos > General Settings and record your settings in the "Limits" section. Everytime you upgrade, this stuff will be wiped out and I couldn't figure out how to fix Survivor's code to fix it.
    • I recommend the following settings for your limits...
    • 5 - 15 - 2 - 5 - 0 - 0 - 5 - 20 - 5
  2. When you re-install the Video-Directory, it also does not re-install your videohoster XML files. Simple, this means you need to re-import the two YouTube XML files I have included in the zip. Just import them and it will automatically overwrite your old YouTube XML files.
  3. You may need to update/revert your existing templates to get my new template edits.
  4. By default I have disabled the options for SEO-slugs. While yes, the SEO-slugs do work great; they inherintly break the Who's Online system. I don't know much about SEO or VBplugins, so chances are I wont be fixing this anytime soon. If you use VBSEO, the SEO-slug system doesn't affect you.
  5. If you so wish, you can enable the SEO-slugs as they are right now by uncommenting the following line in /video.php.
    Code:

    // define('SEO_ENABLED', true);
    And add the following to your .htaccess file:
    Code:

    RewriteEngine On

    #### VideoDirectory
    RewriteRule ^(.*)video-(.*)-v([0-9]+)(.*)&page=([0-9]+)$ video.php?do=viewdetails&videoid=$3&page=$5 [QSA,L]
    RewriteRule ^(.*)video-(.*)-v([0-9]+)(.*)$ video.php?do=viewdetails&videoid=$3 [QSA,L]
    RewriteRule ^(.*)video-(.*)-c([0-9]+)(.*)&page=([0-9]+)$ video.php?do=viewcategory&categoryid=$3&page=$5 [QSA,L]
    RewriteRule ^(.*)video-(.*)-c([0-9]+)(.*)$ video.php?do=viewcategory&categoryid=$3 [QSA,L]
    RewriteRule ^(.*)video-(.*)-u([0-9]+)(.*)&page=([0-9]+)$ video.php?do=viewuser&userid=$3&page=$5 [QSA,L]
    RewriteRule ^(.*)video-(.*)-u([0-9]+)(.*)$ video.php?do=viewuser&userid=$3 [QSA,L]

Okay... that was simple enough... now for my patch notes, once again being worked backwards with Beyond Compare 3

CHANGES TO product-videodirectory.xml from Survivor's Version
  • Fixed create table constructs to check for existance.
  • Added new column in videocategory for the indent level.
  • Rewrote ALL TEMPLATES to be more aestheticly pleasing.
  • Added templates "video_catbit_small_sub", "video_details_embed" and "video_user".
  • Added Who's Online information for video user pages.
  • Added missing phrases for many of the new features in my edits.
  • Rewrote the majority of the phrases in this mod for better English.
CHANGES TO /video.php from Survivor's Version
  • Added support for a basic SEO slug system.
  • Added support for a basic "sub-category" system. Its not actually sub categories; but I have made it so that you can define a "level" for each category. When listing categories on the sidebar, the system will now print out the contents of the template "video_catbit_small_sub" once for each level of the category. So by default, categories are level 0, and video_catbit_small_sub prints out 0 times. If you set a category to level 2, then the contents of video_catbit_small_sub will print out 2 times before it displays the category link. You can see an example of how this works here: http://www.8wayrun.com/video.php
  • Added support for contributor video pages. Very simple, click on the user link and it will go to a page listing all videos uploaded by that user.
  • Moved embed code to the top of the page using the template "video_details_embed". This gives more space for high definition video.
  • VideoBBCode now fetches the video title for bbcode embed tags.
  • PageNav for comments on VIDEO-DETAILS now properly calls up construct_video_url. Why it was not doing this to begin with, when every other video url link was; is beyond me. SHAME ON YOU SURVIVOR!
  • Per Survivor's hotfixes; RSS feeds are properly sanitized for IE and Opera. Firefox was displaying the broken RSS feed without issues; so most people didn't notice it.
  • I have removed the "random" and "best rated" options for VIDEO-DETAILS. There is no reason to have these options for when people are viewing specific videos. I have left the "related video" options intact.
  • The Delete Comment page is now constructed properly. It calls its own page, instead of from the shell.
  • I forced category display on all pages. In the original version, on certain pages, the category didn't show up in the videobit... now it always does.
CHANGES TO /admincp/video.php from Survivor's Version
  • Added support for the category "level" indenting system. In order to change the level of a category, you must do it in the category edit screen in your admincp. I tried to figure out how to do it from the display order screen; but as I said, I dont know much about VB plugins; so i couldn't figure it out.
  • Changed the videohoster "yesno" setting from "true : false" to "1 : 0"... The problem is that if you set something for true, it worked fine (it properly inputted "1" into the videohoster fields); but if you set something for false, it inputted a null instead of properly inputting "0". So now the "yesno" goes straight to the 1 or 0.
CHANGES TO /includes/class_dm_videocategory.php from Survivor's Version
  • Added support for the category "level" indenting system.
CHANGES TO /includes/functions_videodirectory.php from Survivor's Version
  • The construct_video_bit function now has a new routine for handling the new isHD variable. Basically, if the video service for a video contains the word "HD" in it; it will mark the video as HD in the video_bit. (By default, I have this marking as a red "HD" tag). Now the HD tag will work for ANY high definition hosting service, as long as "HD" is in the $hostername (its inside the XML for the video-hoster).
  • Added support for the contributor video pages.
  • Added support for the SEO slug system.
I've also rewritten the YouTube videohoster files, so that they have options for enabling/disabling fullscreen, autoplay and related video options.

@Survivor... you can pretty much incorporate ALL of my changes in your next version; this way at least you dont have to do much for the video user pages. You can download a program called Beyond Compare that will show you a line by line comparison to your files. Anyways, the biggest thing I want is a TAGGING system... get that asap! =P


All times are GMT. The time now is 05:07 PM.

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.01870 seconds
  • Memory Usage 1,817KB
  • 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
  • (6)bbcode_code_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)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