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)

humptyboy 07-07-2011 07:40 AM

Ok here's a strange occurrence:

'SOME' YT videos when url is retrieved throws up a 'Syndication' error, yet when using the [yt] tags from another mod on here to post the video into a thread the video plays fine with no errors. Any ideas why the media library says 'no' but the forum with the [yt] tags says 'yes' lol.

Gn_Snake 07-07-2011 07:45 PM

Quote:

Originally Posted by Gemma (Post 2217522)

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;
}


Ok thanks this is solved.
But now I have the same problem when I insert a new media, told me to leave the page or remain in the same window and not allow me to enter a new media.
:confused:

8thos 07-08-2011 03:02 AM

Does anyone know how to upload videos to the server using jwplayer with this mod?

or would this be better off asked in Paid Requests?

michal72 07-08-2011 04:49 AM

Quote:

An administrator can upload a media to the /customVID/ (default) directory; then add the media to the library using the URL code of "local:filename". Media hosted locally will be displayed using JWPlayer, but will not provide meta data, so that kind of information will need to be entered manually.
but have never tried

8thos 07-08-2011 06:13 AM

It's either this or vbtube then. Hmmm.

Gn_Snake 07-08-2011 07:24 PM

Solution for my problem?

Thanks for all

michal72 07-08-2011 08:08 PM

Quote:

Originally Posted by Gn_Snake (Post 2218300)
Solution for my problem?

Did you try this?

humptyboy 07-09-2011 05:14 AM

Any take on why some YT videos get blocked with a 'Syndication' error yet can still be posted in the forums using bbcode tags without generating such an error?

Gn_Snake 07-09-2011 12:00 PM

Quote:

Originally Posted by michal72 (Post 2218318)
Did you try this?


I don't have in ..media/media_ajax_submit.js this code:
Code:

fetch_object('vB_Editor_001_textarea').value = description;
and

Code:

function validate()
{
    var error = '';

:confused:

michal72 07-09-2011 05:48 PM

Quote:

Originally Posted by Gn_Snake (Post 2218491)
I don't have in ..media/media_ajax_submit.js this code:
Code:

fetch_object('vB_Editor_001_textarea').value = description;
and

Code:

function validate()
{
    var error = '';

:confused:

You have for sure

Code:

fetch_object('vB_Editor_001_textarea').value = description;
- line 83

Code:

function validate()
{
    var error = '';

- lines 148-150


BR


All times are GMT. The time now is 06:34 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.03240 seconds
  • Memory Usage 1,750KB
  • 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
  • (5)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