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)

Wajdan 07-04-2011 10:59 PM

Quote:

Originally Posted by Gn_Snake (Post 2216724)
Sorry but i don't have 8 Template, i have:
Code:

8WR_media_comment
8WR_media_details
8WR_media_details_edit
8WR_media_submit

:confused:

Find in main forum directory/media/media_ajax_submit.js

michal72 07-05-2011 08:51 AM

Quote:

Originally Posted by humptyboy (Post 2216554)
michal72 you are not only a lifesaver you are a star too

Jaxel is a star.
All thanks shoud go to him.

appsfinder 07-05-2011 09:19 AM

thanks will try this out, you are a star

XANDERER 07-05-2011 10:17 AM

my vb ver. 4.1.4, i installed that product, but i can not see configuration menu, under the navbar, and i dont know why, can anyone help me ?
Sorry for my bad english :)
ok, resolved.

Gn_Snake 07-05-2011 10:36 AM

Quote:

Originally Posted by Wajdan (Post 2216773)
Find in main forum directory/media/media_ajax_submit.js

What do you look for in media_ajax_submit.js?

I have no where to find "Relapace in all 8 WR Media templates"?

appsfinder 07-05-2011 12:09 PM

thanks for the info


Quote:

Originally Posted by dcuellar (Post 2118827)
Any way to set Auto-Create Thread default to yes?

----

Edit: Solved. For those interested you can do the following in the '8WR_media_submit' template:

Replace:
Code:

                        <input type="checkbox" class="primary full checkbox" name="newthread" value="newthread" />
With:
Code:

                        <input type="checkbox" class="primary full checkbox" name="newthread" value="newthread" checked />


synseal 07-05-2011 03:14 PM

Quote:

Originally Posted by Gn_Snake (Post 2216975)
What do you look for in media_ajax_submit.js?

I have no where to find "Relapace in all 8 WR Media templates"?

You just edit the media_ajax_submit.js on your server, in the /public_html/media folder.

https://vborg.vbsupport.ru/showpost....postcount=2120

:up:

Gn_Snake 07-06-2011 07:47 PM

Quote:

Originally Posted by synseal (Post 2217037)
You just edit the media_ajax_submit.js on your server, in the /public_html/media folder.

https://vborg.vbsupport.ru/showpost....postcount=2120

:up:


Excuse me,
but in media_ajax_submit.js file, i don't have the:
Code:

.prepare_submit(this.inputname.value, {vb:raw vboptions.postminchars})
:confused:

Gemma 07-06-2011 07:54 PM

Quote:

Originally Posted by Gn_Snake (Post 2217519)
Excuse me,
but in media_ajax_submit.js file, i don't have the:
Code:

.prepare_submit(this.inputname.value, {vb:raw vboptions.postminchars})
:confused:


8WR_media_comment
8WR_media_details
8WR_media_details_edit
8WR_media_submit


In the above templates, find (in all 4 templates)
Code:

.prepare_submit(this.inputname.value, {vb:raw vboptions.postminchars})
Replace with
Code:

.prepare_submit(0, {vb:raw vboptions.postminchars})
Then in your media_ajax_comment.js file, find
Code:

function post_comment(mid)
{
    if (!fetch_object('vB_Editor_QR_textarea').value)
    {
        return false;
    }

    fetch_object('commentsubmit').value = vbphrase['post_comment_wait'];
    fetch_object('commentsubmit').disabled = true;

    YAHOO.util.Connect.asyncRequest("POST", "media_ajax.php?do=comment", {
        success: send_comment,
        failure: vBulletin_AJAX_Error_Handler,
        timeout: 15000
    }, SESSIONURL + 'securitytoken=' + SECURITYTOKEN + "&mid=" + mid + "&message=" + PHP.urlencode(fetch_object('vB_Editor_QR_textarea').value));

    return false;
}

And replace that with
Code:

function post_comment(mid)
{
    var inptval=vB_Editor['vB_Editor_QR'].get_editor_contents();
   
    if(!vB_Editor['vB_Editor_QR'].prepare_submit(0, 0)) {
        return false;
    }
    fetch_object('commentsubmit').value = vbphrase['post_comment_wait'];
    fetch_object('commentsubmit').disabled = true;

    YAHOO.util.Connect.asyncRequest("POST", "media_ajax.php?do=comment", {
        success: send_comment,
        failure: vBulletin_AJAX_Error_Handler,
        timeout: 15000
    }, SESSIONURL + 'securitytoken=' + SECURITYTOKEN + "&mid=" + mid + "&message=" + PHP.urlencode(inptval));

    return false;
}


8thos 07-06-2011 08:43 PM

Quote:

Originally Posted by Jaxel (Post 2083190)
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;


This widget looks better than the other one ngcoders posted.


All times are GMT. The time now is 02:16 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.02915 seconds
  • Memory Usage 1,756KB
  • 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
  • (10)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
  • (5)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