vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - Video-Directory Remixed (https://vborg.vbsupport.ru/showthread.php?t=200819)

Ray2khax 01-15-2009 09:05 PM

I only CHMOD the two folders but why am I still getting that error?

Audax666 01-15-2009 09:46 PM

Hi,

if somebody uses vbadvanced cmps and wants the directory navigation column on the right side and want to lift it up on the same level as the video itself.
Just change in the video_shell template
this:
Code:

<if condition="$HTMLembed">$HTMLembed</if>

<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
<tr>
        <td style="width: 170px; padding-right: 15px;" valign="top">
                <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
                <tr>
                        <td class="thead">$vbphrase[video_categories]</td>
                </tr>
                <tr>
                        <td class="alt1"><span class="smallfont"><strong><a href="video.php$session[sessionurl_q]">$vbphrase[video_homepage]</a></strong><br /><br />
                                $catbits<br /></span>
                        </td>
                </tr>
                <tr>
                        <td class="thead">$vbphrase[video_statistics]</td>
                </tr>
                <tr>
                        <td class="alt1 smallfont">
                                <if condition="$contributorbits">
                                        <phrase 1="$contriblimit">$vbphrase[top_contributors]</phrase>:<br /><br />
                                        <span class="smallfont">
                                                $contributorbits
                                        <br /></span>
                                </if>
                                $vbphrase[videos_total]: <strong>$totalvideos</strong><br />
                                $vbphrase[categories_total]: <strong>$catcount</strong>
                        </td>
                </tr>
                <tr>
                        <td class="thead">$vbphrase[search_videos]</td>
                </tr>
                <tr>
                        <td class="alt1">
                                <form action="video.php?do=search" method="post">
                                        <input type="hidden" name="do" value="search" />
                                        <input type="hidden" name="s" value="$session[sessionhash]" />
                                        <input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
                                        <input type="hidden" name="catid" value="$catid" />
                                        <input type="text" value="$search_query" name="q" class="bginput" style="width: 100px;" /> $gobutton
                                </form>

                        </td>
                </tr>
                </table>
                <br />
                <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
                <if condition="$show['bestratedvideos']">
                        <tr>
                                <td class="thead">$vbphrase[best_rated_videos]</td>
                        </tr>
                        $bestratedbits
                </if>
                <if condition="$show['bestratedsamecatvideos']">
                        <tr>
                                <td class="thead">$vbphrase[best_rated_videos_same_cat]</td>
                        </tr>
                        $bestratedscbits
                </if>
                <if condition="$show['relatedvideos']">
                        <tr>
                                <td class="thead">$vbphrase[related_videos]</td>
                        </tr>
                        $relatedbits
                </if>
                <if condition="$show['randomsamecatvideos']">
                        <tr>
                                <td class="thead">$vbphrase[random_videos_same_category]</td>
                        </tr>
                        $randomscbits
                </if>
                <if condition="$show['randomvideos']">
                        <tr>
                                <td class="thead">$vbphrase[random_videos]</td>
                        </tr>
                        $randombits
                </if>
                </table>
        </td>
        <td valign="top">
                $HTML
        </td>
</tr>
</table>

with this:
Code:

<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td valign="top">
<if condition="$HTMLembed">$HTMLembed</if>
$HTML

</td>
<td style="width: 170px; padding-right: 15px;" valign="top">
                <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
                <tr>
                        <td class="thead">$vbphrase[video_categories]</td>
                </tr>
                <tr>
                        <td class="alt1"><span class="smallfont"><strong><a href="video.php$session[sessionurl_q]">$vbphrase[video_homepage]</a></strong><br /><br />
                                $catbits<br /></span>
                        </td>
                </tr>
                <tr>
                        <td class="thead">$vbphrase[video_statistics]</td>
                </tr>
                <tr>
                        <td class="alt1 smallfont">
                                <if condition="$contributorbits">
                                        <phrase 1="$contriblimit">$vbphrase[top_contributors]</phrase>:<br /><br />
                                        <span class="smallfont">
                                                $contributorbits
                                        <br /></span>
                                </if>
                                $vbphrase[videos_total]: <strong>$totalvideos</strong><br />
                                $vbphrase[categories_total]: <strong>$catcount</strong>
                        </td>
                </tr>
                <tr>
                        <td class="thead">$vbphrase[search_videos]</td>
                </tr>
                <tr>
                        <td class="alt1">
                                <form action="video.php?do=search" method="post">
                                        <input type="hidden" name="do" value="search" />
                                        <input type="hidden" name="s" value="$session[sessionhash]" />
                                        <input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
                                        <input type="hidden" name="catid" value="$catid" />
                                        <input type="text" value="$search_query" name="q" class="bginput" style="width: 100px;" /> $gobutton
                                </form>

                        </td>
                </tr>
                </table>
                <br />
                <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
                <if condition="$show['bestratedvideos']">
                        <tr>
                                <td class="thead">$vbphrase[best_rated_videos]</td>
                        </tr>
                        $bestratedbits
                </if>
                <if condition="$show['bestratedsamecatvideos']">
                        <tr>
                                <td class="thead">$vbphrase[best_rated_videos_same_cat]</td>
                        </tr>
                        $bestratedscbits
                </if>
                <if condition="$show['relatedvideos']">
                        <tr>
                                <td class="thead">$vbphrase[related_videos]</td>
                        </tr>
                        $relatedbits
                </if>
                <if condition="$show['randomsamecatvideos']">
                        <tr>
                                <td class="thead">$vbphrase[random_videos_same_category]</td>
                        </tr>
                        $randomscbits
                </if>
                <if condition="$show['randomvideos']">
                        <tr>
                                <td class="thead">$vbphrase[random_videos]</td>
                        </tr>
                        $randombits
                </if>
                </table>
        </td>

</tr>
</table>

Maybe it's useful for somebody...

socalrico 01-16-2009 03:57 AM

Great Mod Thanks!

nighteyes 01-16-2009 07:29 AM

I really would love to see an imeem.com hoster file. Imeem allows a lot more of their video content to be embedded than other sites.

GlamRockTalk 01-16-2009 01:10 PM

Quote:

Originally Posted by Ray2khax (Post 1713861)
I only CHMOD the two folders but why am I still getting that error?

2. CHMOD /videothumbnails and /includes/videoserviceapi to 777.

You should have the directories CHMOD777 as well as the sub-directories (YouTube, etc).

Jaxel 01-16-2009 05:41 PM

1 Attachment(s)
Veoh.

GlamRockTalk 01-16-2009 06:00 PM

Jaxel, is it possible to have the Apple Trailers as part of our mod here?

http://www.apple.com/trailers/

Jaxel 01-16-2009 06:08 PM

Quote:

Originally Posted by GlamRockTalk (Post 1714961)
Jaxel, is it possible to have the Apple Trailers as part of our mod here?

http://www.apple.com/trailers/

As I said before... unless the site has individual video RSS files... it cant be done.

DawnsWebDesigns 01-16-2009 08:08 PM

I'm getting this error - anybody know why?

Fatal error: Call to undefined method vB_VideoSharingService_YouTube::fetch_showurl() in /var/www/domains/dawnswebdesigns.com/docs/forum/video.php on line 492

I'm sorry...should've read back about 3/4 pages. I did try to reimport the hosters but I couldn't find the files so I exported what I had & tried to reimport them which didn't work out. But then I found this:

SOLUTION: After upgrading, go to Video Directory - Manager Hoster - Click "Import Video-Hoster" - browse to install folder (VidDirRx-1.2.0\upload\includes\xml) and install the XML files for each hoster and set the settings.

OK now videos are simply loading...they don't show up.

Jaxel 01-16-2009 08:18 PM

Quote:

Originally Posted by DawnsWebDesigns (Post 1715047)
I'm getting this error - anybody know why?

Fatal error: Call to undefined method vB_VideoSharingService_YouTube::fetch_showurl() in /var/www/domains/dawnswebdesigns.com/docs/forum/video.php on line 492

Upgrade to 1.2.1 and REIMPORT YOUR HOSTERS.


All times are GMT. The time now is 10:10 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.02590 seconds
  • Memory Usage 1,783KB
  • 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
  • (2)bbcode_code_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)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