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)

kiafaq 03-11-2013 04:41 PM

When I add a YouTube video tells me that I have not entered a description, but I have set his description. Where could he be wrong?

michal72 03-12-2013 08:18 PM

Quote:

Originally Posted by kiafaq (Post 2409349)
When I add a YouTube video tells me that I have not entered a description, but I have set his description. Where could he be wrong?

Check out my signature

marccap 03-15-2013 09:02 PM

What coding needs amending to eliminate this gap and center the thumbnails? - http://gyazo.com/8be4e72c4c65109f46904b3f2607ffab

Thanks

tbworld 03-15-2013 09:21 PM

This template uses an HTML table format so CSS alone will not fix it. You could try putting the table into a wrapper and then centering the table in the wrapper. I know I rewrote the mod to be adaptable, but I cannot remember if I put it in a wrapper or I just rewrote the template eliminating the tables. When I return home I will take a quick look.

marccap 03-15-2013 09:32 PM

Quote:

Originally Posted by tbworld (Post 2410229)
This template uses an HTML table format so CSS alone will not fix it. You could try putting the table into a wrapper and then centering the table in the wrapper. I know I rewrote the mod to be adaptable, but I cannot remember if I put it in a wrapper or I just rewrote the template eliminating the tables. When I return home I will take a quick look.

Ok thanks :up:

Crotan 03-23-2013 07:49 PM

ignore this. Styling issues were theme specific.

saYRam 03-25-2013 03:51 PM

http://asgagida.com.tr/Untitled.png

when i click to Media link Forum and Medya link is active. (vb4/media.php?)

Why its happens?

Btw, Thank you very very much for this great add-on.

faisaly.com 04-09-2013 08:40 PM

Is there a recent working vimeo xml to add to services, i cant seem to get vimeo to retreive information

weave 04-25-2013 10:41 AM

Anyone running 4.2.1 with his mod? Any issues?

michal72 04-25-2013 03:41 PM

Quote:

Originally Posted by weave (Post 2418446)
Anyone running 4.2.1 with his mod? Any issues?

Yes, no issues. Check out my signature for fixes
BR

initiald 04-26-2013 01:42 PM

Please help make a Youku, Tudou XML.

initiald 05-04-2013 09:28 AM

Quote:

Originally Posted by michaelmash (Post 2121618)
hi jaxel , i set the thumb, but its still say that.


test video url : http://www.tudou.com/programs/view/x0stnflkpVM

Code:

<?xml version="1.0" encoding="UTF-8"?>

<service>
        <svcName>TuDou</svcName>
        <svcRegex><![CDATA[http://[a-z]*?[\.]?tudou\.[a-z]*?/programs/view/([\w-]*)]]></svcRegex>
        <svcURL>http://www.tudou.com/programs/view/{serviceVAL}</svcURL>
        <svcFeed><![CDATA[http://api.tudou.com/v3/gw?method=item.info.get&appKey=mykey&format=xml&itemCodes={serviceVAL}]]></svcFeed>
        <svcValue2>null</svcValue2>
        <svcThumb><![CDATA[$arr['result']['results']['itemInfo']['picurl']]]></svcThumb>
        <svcTitle><![CDATA[$arr['result']['results']['itemInfo']['title']]]></svcTitle>
        <svcDesc><![CDATA[$arr['result']['results']['itemInfo']['description']]]></svcDesc>
        <svcLength><![CDATA[$arr['result']['results']['itemInfo']['totalTime']]]></svcLength>
        <svcTags><![CDATA[$arr['result']['results']['itemInfo']['tags']]]></svcTags>
        <svcMovie>http://www.tudou.com/v/{serviceVAL}</svcMovie>
        <svcWidth>640</svcWidth>
        <svcHeight>385</svcHeight>
        <svcStream>null</svcStream>
        <svcError>null</svcError>
        <svcParams>null</svcParams>
</service>


Delete ['result']
Change picurl to picUrl
Change itemInfo to ItemInfo

Can you provide me the Youku rss feed and api, greatly appreciated.

hrenos 05-15-2013 07:45 PM

Quote:

Originally Posted by michal72 (Post 2216545)
Try this

Replace in media_ajax_submit.js:

PHP Code:

fetch_object('vB_Editor_001_textarea').value description

with:
PHP Code:

vB_Editor['vB_Editor_001'].write_editor_contents(description); 


And:
PHP Code:

function validate()
{
    var 
error ''

with:
PHP Code:

function validate()
{
    
vB_Editor['vB_Editor_001'].prepare_submit(00);
    var 
error ''

BR

where do I add these ? I cant find media_ajax_submit.js (im using 4.2.1)

initiald 05-15-2013 09:17 PM

^media_ajax_submit.js is in the server root folder or the file that come when you download in the Upload>Media folder.
By the way, if anyone interest in light out mode for this Media Library, you can check out this mod by Gemma.

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

To have all black out except your video player. In AdminCP> find 8WR_media_details.

Replace all code with this:

PHP Code:

<div class="mediahead">{vb:var media.title}</div>
<
div class="mediabody">

    <
div class="mediarow" style="margin-bottom: {vb:stylevar media_margin}px;">
        <
vb:if condition="$perms['edit'] OR $perms['modedit']">
            <
div style="float: right; padding-left: 10px;"><a href="{vb:raw href.details_tags}" class="button">{vb:phrase media_tags_edit}</a></div>
            <
div style="float: right; padding-left: 10px;"><a href="{vb:raw href.details_edit}" class="button">{vb:phrase media_details_edit}</a></div>
        </
vb:if>
        <
vb:if condition="$perms['report']">
            <
div style="float: right; padding-left: 10px;"><a href="{vb:raw href.details_report}" class="button">{vb:phrase media_report}</a></div>
        </
vb:if>
        <
div id="mediafaves" style="float: left;">{vb:raw mediafaves}</div>
        <
b>{vb:var media.title}</b> <vb:if condition="!$media['embed_stream']">({vb:var media.length})</vb:if>
    </
div>

    <
vb:if condition="$playlist">
    <
div class="mediarow floatcontainer" style="margin-bottom: {vb:stylevar media_margin}px;">
        <
vb:if condition="$next">
            <
div style="float: right; padding-left: 10px;"><b>Next &raquo;</b> ({vb:var next.posof {vb:var playlist.count})<br /><a href="{vb:raw next.href}">{vb:var next.title}</a></div>
        </
vb:if>
        <
vb:if condition="$prev">
            <
div style="float: left; padding-right: 10px;">({vb:var prev.posof {vb:var playlist.count}) <b>&laquoPrevious</b><br /><a href="{vb:raw prev.href}">{vb:var prev.title}</a></div>
        </
vb:if>
        <
b><a href="{vb:raw playlist.href}">{vb:var playlist.plName}</a></b>
    </
div>
    </
vb:if>

<
table cellspacing="0" cellpadding="0" border="0" width="100%">
<
tr>
        <
td<vb:if condition="!$media['embed_stream']"style="padding-right: {vb:stylevar media_margin}px;"</vb:if> width="1%">
            <
div class="mediarow" style="padding: 0px;" id="embed">
                        <
div id "standout">
                {
vb:raw media.embed}
            </
div>
    <
vb:if condition="$media['embed_stream']">
                {
vb:raw media.embed_stream}
    <
vb:else />
            </
div>
        </
td>
        <
td class="mediarow" valign="top">
            <
b>{vb:phrase media_datetime,{vb:var media.date},{vb:var media.time}}</b><br />
            {
vb:phrase media_uploadedby} <a href="{vb:raw href.user}">{vb:var media.username}</a><br />
            <
br />
            <
div class="popupmenu" id="mediarating">{vb:raw mediarating}</div>
            <
br />
            <
a href="{vb:raw href.category}">{vb:var media.catName}</a><br />
            {
vb:phrase media_favorites}: {vb:var media.favorites} - {vb:phrase media_views}: {vb:var media.views}<br />
            {
vb:phrase media_comments}: {vb:var media.comments}<br />
            <
br />
            <
input type="text" class="primary full textbox" onclick="this.focus(); this.select()" value="{vb:var href.details}" readonly="readonly" style="width: 90%;" /><br />
            <
br />
        <
vb:if condition="$vbulletin->options[media_bbcode]">
            <
input type="text" class="primary full textbox" onclick="this.focus(); this.select()" value="[media={vb:var media.title}]{vb:var media.mediaID}[/media]" readonly="readonly" style="width: 90%;" /><br />
            <
br />
        </
vb:if>
            <
b>{vb:phrase media_tags}:</b><br />
            <
ul class="commalist">
                {
vb:raw media.tags}
            </
ul>
<
br /><br />

<
div class="blockrow" align="center">
<
div id="lights"></div>
        </
td>
    </
vb:if>
</
tr>
</
table>

    <
div class="mediarow floatcontainer" style="margin-top: {vb:stylevar media_margin}px; text-align: left;">
        <
vb:if condition="$vbulletin->options[media_custom]">
            <
vb:if condition="$vbulletin->options[media_custom1_name] && $media[custom1]">
                <
b>{vb:raw vboptions.media_custom1_name}:</b> {vb:raw media.custom1}<br />
            </
vb:if>
            <
vb:if condition="$vbulletin->options[media_custom2_name] && $media[custom2]">
                <
b>{vb:raw vboptions.media_custom2_name}:</b> {vb:raw media.custom2}<br />
            </
vb:if>
            <
vb:if condition="$vbulletin->options[media_custom3_name] && $media[custom3]">
                <
b>{vb:raw vboptions.media_custom3_name}:</b> {vb:raw media.custom3}<br />
            </
vb:if>
            <
vb:if condition="$vbulletin->options[media_custom4_name] && $media[custom4]">
                <
b>{vb:raw vboptions.media_custom4_name}:</b> {vb:raw media.custom4}<br />
            </
vb:if>
            <
vb:if condition="$vbulletin->options[media_custom5_name] && $media[custom5]">
                <
b>{vb:raw vboptions.media_custom5_name}:</b> {vb:raw media.custom5}<br />
            </
vb:if>
            <
vb:if condition="$vbulletin->options[media_custom6_name] && $media[custom6]">
                <
b>{vb:raw vboptions.media_custom6_name}:</b> {vb:raw media.custom6}<br />
            </
vb:if>
            <
vb:if condition="$vbulletin->options[media_custom7_name] && $media[custom7]">
                <
b>{vb:raw vboptions.media_custom7_name}:</b> {vb:raw media.custom7}<br />
            </
vb:if>
            <
vb:if condition="$vbulletin->options[media_custom8_name] && $media[custom8]">
                <
b>{vb:raw vboptions.media_custom8_name}:</b> {vb:raw media.custom8}<br />
            </
vb:if>
            <
vb:if condition="$vbulletin->options[media_custom9_name] && $media[custom9]">
                <
b>{vb:raw vboptions.media_custom9_name}:</b> {vb:raw media.custom9}<br />
            </
vb:if>
            <
vb:if condition="$media[custom1] || $media[custom2] || $media[custom3] || $media[custom4] || $media[custom5] || $media[custom6] || $media[custom7] || $media[custom8] || $media[custom9]">
                <
br />
            </
vb:if>
        </
vb:if>
        {
vb:raw media.description}
    </
div>
</
div>

<
div class="mediahead">{vb:phrase media_comment_submit}</div>
<
div class="mediabody">
<
vb:if condition="$perms['comment']">
    <
script type="text/javascript" src="clientscript/vbulletin-editor.js?v={vb:raw vboptions.simpleversion}"></script>
    <
script type="text/javascript" src="clientscript/vbulletin_textedit.js?v={vb:raw vboptions.simpleversion}"></script>

    <
form action="media.php" name="vbform" method="post" onsubmit="return vB_Editor['{vb:raw editorid}'].prepare_submit(0, {vb:raw vboptions.postminchars})">

    <
div id="commentform">
        <
div class="mediarow floatcontainer" style="padding: 10px;">
            {
vb:raw messagearea}
        </
div>
    </
div>
    <
div style="padding-right: 30px; text-align: right;">
        <
input type="submit" class="button" name="commentsubmit" id="commentsubmit" value="{vb:phrase media_comment_submit}" />
    </
div>

    <
input type="hidden" name="s" value="{vb:raw session.sessionhash}" />
    <
input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
    <
input type="hidden" name="do" value="comment" />
    <
input type="hidden" name="mid" value="{vb:var media.mediaID}" />

    </
form>
</
vb:if>

    <
div id="mediasubs" style="float: left; margin-right: 10px;">{vb:raw mediasubs}</div>
    <
div id="pagination_top">{vb:raw pagenav}</div><br /><br />

    <
div class="mediarow" style="padding: 10px; text-align: left;">
        <
ol id="message_list" class="list_no_decoration">
            <
vb:if condition="$commentbits">
                {
vb:raw commentbits}
            <
vb:else />
                <
li style="text-align: center; padding: 10px;">{vb:phrase media_comments_none}</li>
            </
vb:if>
        </
ol>        
    </
div>
</
div>

<
script type="text/javascript" src="media/media_ajax_rating.js"></script>
<
script type="text/javascript" src="media/media_ajax_comment.js"></script>
<
script type="text/javascript" src="media/media_ajax_faves.js"></script>
<
script type="text/javascript" src="media/media_ajax_subs.js"></script>
<
script type="text/javascript">
<!--
    
vbphrase['post_comment'] = '{vb:phrase media_comment_done}';
    
vbphrase['post_comment_wait'] = '{vb:phrase media_comment_wait}';
    
vbphrase['post_comment_fail'] = '{vb:phrase media_comment_submit}';

    
rating_init({vb:var media.mediaID});
    
comment_init({vb:var media.mediaID},<vb:if condition="$playlist">{vb:var playlist.playlistID}<vb:else />0</vb:if>);
    
faves_init({vb:var media.mediaID},<vb:if condition="$playlist">{vb:var playlist.playlistID}<vb:else />0</vb:if>);
    
subs_init({vb:var media.mediaID},<vb:if condition="$playlist">{vb:var playlist.playlistID}<vb:else />0</vb:if>);
-->
</
script>

<
style type="text/css">
        
#lights { /* This is the container which holds the light switch */
            
position:relative/* Set the position of the light switch to relative so it can be placed above the "dimming" layer */
            
z-index:500/* Set the height on the Z axis to 500 which is above the "dimmed" layer */
        
}
 
        
object /* The object tag is what the swf files are held in */
            
outline:none/* Set the outline of swf objects to none so when you click on it you don't get a border around the swf */
        
}
 
        
#fade { /* This is the "dimmed" layer which fades in when the lights go off */
            
displaynone/* Set the display to none which hides the layer */
            
background#000000; /* Set the color to black */
            
positionfixedleft0top0/* Set the position to fixed so when the user scrolls it stays with them */
            
width100%; height100%; /* Set the width and height to 100% of the browser window */
            
opacity1/* Set the layer's opacity to .90 which is 90% */
            
z-index:100/* Set the height on the Z axis to 100 which is below the "light switch" layer */
        
}
#standout{
 
position:relative;
background-color:#ffffff;                  
 
z-index:1000;
}
    </
style>
<
script type="text/javascript" src="swfobject.js"></script>
<
script type="text/javascript">
    var 
flashvars false;
 
    var 
params = {
        
movie"Lights.swf",
        
quality"high",
        
allowScriptAccess"always",
        
wmode"transparent"
    
};
 
    var 
attributes false;
 
    
swfobject.embedSWF("Lights.swf""lights""100""100""9.0.0""expressInstall.swf"flashvarsparamsattributes);
</
script>
<
script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
<
script type="text/javascript">
    function 
lightsOn(){
        
//When you turn the lights back on fade out the "dim" layer over 500 milliseconds and then remove it
        
$('#fade').fadeOut(500,function() { $("#fade").remove(); });
    };
 
    function 
lightsOff(){
        $(
'body').append('<div id="fade"></div>'); //When you turn the lights off add the "dimmed" layer to the page
        
$('#fade').fadeIn(250); //Fade in the "dim" layer over 250 milliseconds
    
};
</
script


Chadi 05-25-2013 08:07 PM

I keep getting this error whenever I try to rebuild media thumbnails

ERROR CONSTRUCTING THUMBNAIL

I checked each video, absolutely nothing wrong with them at all.

I click retry, and it repeatedly gets stuck at "Processing 3"

Also nothing wrong with that third video either, at all.

Mariner1 06-01-2013 08:57 AM

Ive tried to fix the comments here https://vborg.vbsupport.ru/showpost....postcount=2129

Ive tried to find .prepare_submit(this.inputname.value, {vb:raw vboptions.postminchars})

Its not in any media template.Im running 4.2.1

initiald 06-02-2013 08:12 AM

Quote:

Originally Posted by Mariner1 (Post 2425201)
Ive tried to fix the comments here https://vborg.vbsupport.ru/showpost....postcount=2129

Ive tried to find .prepare_submit(this.inputname.value, {vb:raw vboptions.postminchars})

Its not in any media template.Im running 4.2.1

Copy the code of the template and paste them here. Otherwise, you already have fixed with template change. To be honest with you, the OP code using a initial 8_ in his variable name is not a good choice. So I re-edit his whole mod. If you're interest, I can give you mine and do re-install over again. This will fix all your problem.

initiald 06-02-2013 08:41 AM

Quote:

Originally Posted by Chadi (Post 2424213)
I keep getting this error whenever I try to rebuild media thumbnails

ERROR CONSTRUCTING THUMBNAIL

I checked each video, absolutely nothing wrong with them at all.

I click retry, and it repeatedly gets stuck at "Processing 3"

Also nothing wrong with that third video either, at all.

It most likely caused by a sync error. Not much you can do in that case but try deleting and upload the video or find a replacement thumbnail.

Mariner1 06-02-2013 11:45 AM

Hi iniald.I uninstalled it but would love to be able to use it if possible,any help would be appreciated

K4GAP 06-02-2013 02:02 PM

Quote:

Originally Posted by initiald (Post 2425325)
Copy the code of the template and paste them here. Otherwise, you already have fixed with template change. To be honest with you, the OP code using a initial 8_ in his variable name is not a good choice. So I re-edit his whole mod. If you're interest, I can give you mine and do re-install over again. This will fix all your problem.

Anyway, I've manage to create XML for Tudou but still struggling to figure out Youku. The only issue is that I can't seem to find the Service Feed API. Apparently, I locate this..

https://openapi.youku.com/v2/videos/...=XMjg1MTcyNDQ0

http://open.youku.com/docs/api/uploads/client/english

Also if anyone likes to do it like mine, I re-modify the detail template to look more minimalism. Clean design, add an extra random video icon, icon opacity change when hover, and Youtube style tooltip popup on top when mouse hover.

For example:

Old

https://vborg.vbsupport.ru/external/2013/06/56.png

NEW

https://vborg.vbsupport.ru/external/2013/06/57.png

Sir, would you mind sharing how you got it working on 4.2.1 ?
There are several of us waiting for a fix that works.

initiald 06-03-2013 09:54 AM

1 Attachment(s)
Sure. But I must WARN you guys first that I have change variable on the OP code, including some fix on his template to reflect a cleaner and professional design. I also add light out option, and Youtube professional tooltip instead of the default vbulletin (Like the pic I show above iis what you will be expecting to see except obviously style depends on your forum custom style.

Instruction:

1. Copy all the files inside the "upload" folder into forum root.
2. AdminCP> Manage Products> product-medialibrary (Edit version).xml
3. AdminCP> Manage Products> product-medialibrarynav (Edit Version).xml
4. After you finish, change all the codes in the template accordingly to the name in the "Template Change" folder.

Optional

5. In the "XML" folder are some provided host services (including Tudou, Vimeo, Dailymotion, etc..) that you can use to install after done with everything.

Good luck.

Mariner1 06-03-2013 10:43 AM

Hi
This looks great thank you.
Can you tell me how i change all the codes in the template accordingly to the name in the "Template Change" folder.Im not sure what this means,sorry

initiald 06-03-2013 11:17 AM

^Go to AdminCP > Styles & Templates > Search in Templates

Type in the name as shown each in the Template Change folder. Select your Custom style and edit each one by overwriting. If you are not sure, save the original copy in case you want to redo.

K4GAP 06-03-2013 11:22 PM

Quote:

Originally Posted by initiald (Post 2425485)
Sure. But I must WARN you guys first that I have change variable on the OP code, including some fix on his template to reflect a cleaner and professional design. I also add light out option, and Youtube professional tooltip instead of the default vbulletin (Like the pic I show above iis what you will be expecting to see except obviously style depends on your forum custom style.

Instruction:

1. Copy all the files inside the "upload" folder into forum root.
2. AdminCP> Manage Products> product-medialibrary (Edit version).xml
3. AdminCP> Manage Products> product-medialibrarynav (Edit Version).xml
4. After you finish, change all the codes in the template accordingly to the name in the "Template Change" folder.

Optional

5. In the "XML" folder are some provided host services (including Tudou, Vimeo, Dailymotion, etc..) that you can use to install after done with everything.

Good luck.

You run 4.2.1 ?
Would it be possible for you to post a link to your site to confirm working on 4.2.1 ?

initiald 06-04-2013 02:10 AM

Quote:

Originally Posted by GaryT (Post 2425665)
You run 4.2.1 ?
Would it be possible for you to post a link to your site to confirm working on 4.2.1 ?

I test run on 4.2.1 and it works fine. Just as 4.2 PL3.

PM send.

Chadi 06-05-2013 05:32 PM

Quote:

Originally Posted by Chadi (Post 2424213)
I keep getting this error whenever I try to rebuild media thumbnails

ERROR CONSTRUCTING THUMBNAIL

I checked each video, absolutely nothing wrong with them at all.

I click retry, and it repeatedly gets stuck at "Processing 3"

Also nothing wrong with that third video either, at all.

Anyone else know how to rectify this?

Also, anyway to make this mobile friendly? Example: when I post the link to my FB page, it doesn't work on mobile phones (comes up blank) because the site is using the mobile theme.

KorsatH 06-23-2013 05:23 PM

tnx for your amazing work.
you also plan to work on your addon for the stream like your site?

Digital Jedi 06-24-2013 04:07 PM

Quote:

Originally Posted by KorsatH (Post 2430018)
tnx for your amazing work.
you also plan to work on your addon for the stream like your site?

Jaxel no longer develops for vB, so there's no plans for upgrading this mod at this time.

Toxic2 07-07-2013 08:39 AM

there is no media tab in ACP so I can not set permissions vb 4.1.10

tbworld 07-08-2013 01:54 AM

@Toxic, you need to read the entire thread. You will not get this mod working if you do not. Take your time it is a nice mod, but it has to be carefully setup.

DGrey2011 07-09-2013 02:49 PM

I have installed the edited version (with comments and description issues fixed) on vB 4.2.0.

I can type the description exactly when I add the video and it's saved.

However, if I notice some mistakes or I want to add something in the description later, the changes aren't saved and I just get the message 'Leave' or 'Stay on page'. No matter which you click on, the changes aren't saved. :(
I tried on Chrome, FF, Safari, Comodo and in all browsers it's the same.

Does anyone know how to fix this?

vietfancy 07-17-2013 04:51 AM

this is no good for 4.2.1. I can't seem to submit a youtube video.

KorvinGump 07-25-2013 04:35 PM

Quote:

Originally Posted by DGrey2011 (Post 2432906)
I have installed the edited version (with comments and description issues fixed) on vB 4.2.0.

I can type the description exactly when I add the video and it's saved.

However, if I notice some mistakes or I want to add something in the description later, the changes aren't saved and I just get the message 'Leave' or 'Stay on page'. No matter which you click on, the changes aren't saved. :(
I tried on Chrome, FF, Safari, Comodo and in all browsers it's the same.

Does anyone know how to fix this?

I can confirm this bug. If you try to add video on front media page with retrieve information it works good and you can submit video. After this you can edit your description of media. But if you try to submit media with button "Submit media" you can't edit description and when you click on button submit it sends to you message 'Leave' or 'Stay on page'. Please someone needs to fix this for 4.2.1.

michal72 07-25-2013 07:09 PM

Quote:

Originally Posted by DGrey2011 (Post 2432906)
I have installed the edited version (with comments and description issues fixed) on vB 4.2.0.

I can type the description exactly when I add the video and it's saved.

However, if I notice some mistakes or I want to add something in the description later, the changes aren't saved and I just get the message 'Leave' or 'Stay on page'. No matter which you click on, the changes aren't saved. :(
I tried on Chrome, FF, Safari, Comodo and in all browsers it's the same.

Does anyone know how to fix this?

Quote:

Originally Posted by KorvinGump (Post 2435349)
I can confirm this bug. If you try to add video on front media page with retrieve information it works good and you can submit video. After this you can edit your description of media. But if you try to submit media with button "Submit media" you can't edit description and when you click on button submit it sends to you message 'Leave' or 'Stay on page'. Please someone needs to fix this for 4.2.1.

For me my fixes work well for 4.2.0. I can add new video using "Retrieve information" or "Submit media". I can also edit description of the existing media.

I can't check on 4.2.1 because I don't use this version

Regards

mamaveve 08-13-2013 08:45 PM

I try to edit the activity stream template so that latest media showing in activity stream..., but still no good

anyone can help

Chadi 08-20-2013 06:03 PM

Having two issues:

First, using the [media] tag in forum posts, works in preview but once I submit the post the video disappears and the only the title shows, linked.

I use this

Code:

[media=Michael Jr Humble, TX EVENT]293[/media]
Second issue: for whatever reason, when I click edit in the administrative > services area for any service it redirects me to the homepage.

This is what I have in the htaccess file

Quote:

# Media Library
ReWriteRule ^media/m(\d+).*/tags$ media.php?do=tags_edit&mid=$1 [QSA]
ReWriteRule ^media/m(\d+).*/edit$ media.php?do=details_edit&mid=$1 [QSA]
ReWriteRule ^media/m(\d+).*/report$ media.php?do=report&mid=$1 [QSA]
ReWriteRule ^media/m(\d+).*/c(\d+)$ media.php?do=comment_edit&cmt=$2 [QSA]
ReWriteRule ^media/m(\d+).*/p(\d+).*$ media.php?do=details&mid=$1&pid=$2 [QSA]
ReWriteRule ^media/m(\d+).* media.php?do=details&mid=$1 [QSA]
ReWriteRule ^media/p(\d+).*/edit$ media.php?do=playlist_edit&pid=$1 [QSA]
ReWriteRule ^media/p(\d+).* media.php?do=playlist&pid=$1 [QSA]
ReWriteRule ^media/c(\d+).* media.php?do=category&cid=$1 [QSA]
ReWriteRule ^media/u(\d+).* media.php?do=user&uid=$1 [QSA]
ReWriteRule ^media/tag/(.*) media.php?do=tag&tid=$1 [QSA]
ReWriteRule ^media/results/(.*) media.php?do=results&query=$1 [QSA]
ReWriteRule ^media/advresults/(.*) media.php?do=advresults&query=$1 [QSA]
ReWriteRule ^media/letter/(.*) media.php?do=letter&query=$1 [QSA]
ReWriteRule ^media/browse.* media.php?do=browse [QSA]
ReWriteRule ^media/search.* media.php?do=search [QSA]
ReWriteRule ^media/random.* media.php?do=random [QSA]
ReWriteRule ^media/submit.* media.php?do=submit [QSA]
ReWriteRule ^media/tagcloud.* media.php?do=tagcloud [QSA]
ReWriteRule ^media/playlists.* media.php?do=playlists [QSA]
ReWriteRule ^media/pcreate.* media.php?do=playlists_create [QSA]
ReWriteRule ^media/pmine.* media.php?do=playlists_mine [QSA]
ReWriteRule ^media/favorites.* media.php?do=favorites [QSA]
ReWriteRule ^media/subscriptions.* media.php?do=subscriptions [QSA]
ReWriteRule ^media/admin/edit/s(\d+).* media.php?do=admin_host_edit&sid=$1 [QSA]
ReWriteRule ^media/admin/delete/s(\d+).* media.php?do=admin_host_delete&sid=$1 [QSA]
ReWriteRule ^media/admin/export/s(\d+).* media.php?do=admin_host_export&sid=$1 [QSA]
ReWriteRule ^media/admin/(\w+).* media.php?do=admin_$1 [QSA]

# Media Library from Video Directory
RewriteCond %{QUERY_STRING} do=viewdetails&videoid=(\d+)
RewriteRule ^video\.php$ media.php?do=details&mid=%1
RewriteCond %{QUERY_STRING} viewcategory&categoryid=(\d+)
RewriteRule ^video\.php$ media.php?do=category&cid=%1
RewriteCond %{QUERY_STRING} viewuser&userid=(\d+)
RewriteRule ^video\.php$ media.php?do=user&uid=%1
RewriteCond %{QUERY_STRING} viewtag&tag=(.*)
RewriteRule ^video\.php$ media.php?do=tag&tid=%1
ReWriteRule ^video\.php$ media.php

motorhaven 08-25-2013 03:25 AM

Quote:

Originally Posted by vietfancy (Post 2434076)
this is no good for 4.2.1. I can't seem to submit a youtube video.

Works fine for me on 3 different 4.2.1 installations.

fleshy66 08-26-2013 02:54 AM

Quote:

Originally Posted by motorhaven (Post 2440901)
Works fine for me on 3 different 4.2.1 installations.

Did you just add the original to 4.2.1 ? Its been a long time since I used VB so just getting back in to using it again.

AndrewSimm 08-26-2013 03:08 AM

make sure your not using https youtube links

motorhaven 08-26-2013 12:25 PM

And also there are two types of youtube links (youtube.com and youtu.be) make sure you have both defined.


All times are GMT. The time now is 07:45 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.04137 seconds
  • Memory Usage 2,045KB
  • 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
  • (5)bbcode_php_printable
  • (18)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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