vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - 8WayRun.Com - Media Library (https://vborg.vbsupport.ru/showthread.php?t=240677)

EquinoxWorld 08-10-2010 08:54 PM

Your most welcome, although thanks should be given to the real author of this masterpiece; Jaxel.

Speedy1505 08-11-2010 08:09 AM

A small problem still. If one inserts the BB code from the respective entry in a subject, this is translated to HTML. Thus it is no longer possible to edit a post. It would be better to install a BB Code, and the ads will be left to the parser. Thus, a contribution will be processed in spite of an embedded code.

Veer 08-11-2010 08:46 AM

Quote:

Originally Posted by iJay (Post 2080665)
The side block doesn't seem to display on VB 4.0.5 :(
Any insight?

Code:

ob_start();
require_once(DIR.'/media/media_functions_hrefs.php');

$medias = vB::$vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "media ORDER BY dateline DESC LIMIT 3");

while ($media = vB::$vbulletin->db->fetch_array($medias))
{
        if ($media['length'] == 0)
        {
                $media['length'] = "???";
        }
        else
        {
                $duration = $media['length'];
                $minutes = floor($duration / 60);
                $seconds = $duration % 60;
                $seconds = str_pad($seconds, 2, "0", STR_PAD_LEFT);
                $media['length'] = "$minutes:$seconds";
        }

        $media['intrate'] = intval($media['rating']);
        $media['thumbnail'] = vB::$vbulletin->options['media_thumb_dir']."/thumbs/". $media['mediaID'] .".jpg";
        $media['href'] = construct_href_details($media);

        $templater = vB_Template::create('8WR_media_block');
        $templater->register('media', $media);
        $mediabits .= $templater->render();
}

$output = $mediabits;
ob_end_clean();


Mine too not working on vb4.0.4

Jaxel, need your help for CMS Widget.

EquinoxWorld 08-11-2010 12:11 PM

Quote:

Originally Posted by Veer (Post 2082064)
Mine too not working on vb4.0.4

Jaxel, need your help for CMS Widget.

Do you mean the sideblock for forum home or the CMS sidebar.

For the CMS widget just insert this into a php direct execution widget.

Code:

 
global $vbulletin;
require_once(DIR.'/media/media_functions_hrefs.php');

//  %d
$show_count = 5; 

$medias = $vbulletin->db->query_read("
    SELECT media.*, media_service.*
    FROM " . TABLE_PREFIX . "media AS media
    LEFT JOIN " . TABLE_PREFIX . "media_service AS media_service ON(media_service.serviceID = media.serviceID)
    ORDER BY media.dateline DESC
    LIMIT ".$show_count);


$output = '
  <style type="text/css">
    .thumbnail img{
      width: 90px;
      height: 70px;
      border: 1px solid #ccc;
      padding: 5px;
      margin: 5px;
      float: left;
    }
   
    .video_bit {
      min-height: 90px;
    }
 
  </style>
                                                           
';

while ($media = $vbulletin->db->fetch_array($medias))
{

    $media['thumbnail'] = $vbulletin->options['media_thumb_dir']."/thumbs/". $media['mediaID'] .".jpg";
    $media['href'] = construct_href_details($media);

    extract($media);
   
    $title = substr($title,0,60);
   
    $mediabits .= sprintf('<div class="cms_widget_post_bit video_bit"><div class="thumbnail"><a href="%s"><img src="%s"></a></div><div class="cms_widget_post_header"><a href="%s">%s</a></div><div class="cms_widget_post_userinfo"><a href="member.php/u=%d">%s</a> On %s</div></div>',$href,$thumbnail,$href,$title,$userid,$username,date('F j, Y, g:i a',$dateline));
}



$output .= $mediabits;

For the forum home sidebar .

add this to a new (php content type using template: " block html") forum block:

Code:

global $vbulletin;
require_once(DIR.'/media/media_functions_hrefs.php');

//  %d
$show_count = 13;

$medias = $vbulletin->db->query_read("
    SELECT media.*, media_service.*
    FROM " . TABLE_PREFIX . "media AS media
    LEFT JOIN " . TABLE_PREFIX . "media_service AS media_service ON(media_service.serviceID = media.serviceID)
    ORDER BY media.dateline DESC
    LIMIT ".$show_count);


$output = '
  <style type="text/css">
    .thumbnail img{
      width: 135px;
      height: 90px;
      border: 1px solid #ccc;
      padding: 5px;
      margin: 5px;
      text-align: center;
      float: center;
    }
   
    .video_bit {
      text-align: center;
      min-height: 120px;
    }
 
  </style>
                                                         
';

while ($media = $vbulletin->db->fetch_array($medias))
{

    $media['thumbnail'] = $vbulletin->options['media_thumb_dir']."/thumbs/". $media['mediaID'] .".jpg";
    $media['href'] = construct_href_details($media);

    extract($media);
   
    $title = substr($title,0,60);
   
    $mediabits .= sprintf('<div class="cms_widget_post_bit video_bit"><div class="thumbnail"><a href="%s"><img src="%s"></a></div><div class="cms_widget_post_header"><a href="%s">%s</a></div><div class="cms_widget_post_userinfo"><a href="member.php">%s</a> By %s</div></div>',$href,$thumbnail,$href,$title,$userid,$username,date('F j, Y, g:i a',$dateline));
}



$output .= $mediabits;

If you have any questions regarding the CMS widget go here for more instructions.

https://vborg.vbsupport.ru/showthread.php?t=244058

Veer 08-11-2010 01:21 PM

Thanks EquinoxWorld CMS widgetis now working fine.

The only problem I found is it showing incorrect URL of users.
It shows: http://www.domain.com/member.php/u=0
Correct URL should be: http://www.domain.com/members/9542-Sehwag

EquinoxWorld 08-11-2010 03:38 PM

Quote:

Originally Posted by Veer (Post 2082163)
Thanks EquinoxWorld CMS widgetis now working fine.

The only problem I found is it showing incorrect URL of users.
It shows: http://www.domain.com/member.php/u=0
Correct URL should be: http://www.domain.com/members/9542-Sehwag

Is it the wrong URL as in it redirects you somewhere it is not suppose to or that is has not been rewritten for SEO?

Veer 08-11-2010 08:02 PM

Quote:

Originally Posted by EquinoxWorld (Post 2082222)
Is it the wrong URL as in it redirects you somewhere it is not suppose to or that is has not been rewritten for SEO?

In both ways its incorrect.

It exactly shows:
Code:

http://www.domain.com/member.php/u=0
with every user.

EquinoxWorld 08-11-2010 09:42 PM

Quote:

Originally Posted by Veer (Post 2082319)
In both ways its incorrect.

It exactly shows:
Code:

http://www.domain.com/member.php/u=0
with every user.

Make sure to follow exactly the instructions found here: https://vborg.vbsupport.ru/showthread.php?t=244058 and try again. Make sure this is for the CMS widget .

Jaxel 08-13-2010 12:01 PM

CMS Widget currently on: http://www.8wayrun.com/

Code:

require_once(DIR.'/media/media_functions_hrefs.php');

$medias = vB::$vbulletin->db->query_read("
        SELECT media.*, media_service.*
        FROM " . TABLE_PREFIX . "media AS media
        LEFT JOIN " . TABLE_PREFIX . "media_service AS media_service ON(media_service.serviceID = media.serviceID)
        ORDER BY media.dateline DESC
        LIMIT 3
");

while ($media = vB::$vbulletin->db->fetch_array($medias))
{
        if ($media['length'] == 0)
        {
                $media['length'] = "???";
        }
        else
        {
                $duration = $media['length'];
                $minutes = floor($duration / 60);
                $seconds = $duration % 60;
                $seconds = str_pad($seconds, 2, "0", STR_PAD_LEFT);
                $media['length'] = "$minutes:$seconds";
        }

        $media['intrate'] = intval($media['rating']);
        $media['thumbnail'] = vB::$vbulletin->options['media_thumb_dir']."/thumbs/". $media['mediaID'] .".jpg";
        $media['href'] = construct_href_details($media);

        $templater = vB_Template::create('8WR_media_WIDGET');
                $templater->register('media', $media);
        $mediabits .= $templater->render();
}

$output = $mediabits;


Tahooma 08-14-2010 11:05 AM

Media URL contained invalid data.

Some Youtube Videos work, lots of others dont.
No, not new videos, videos with 2+ Million views :(
NO SEO activatted, just a standard install...


All times are GMT. The time now is 03:30 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.03561 seconds
  • Memory Usage 1,768KB
  • 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
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (6)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