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)

Jaxel 09-03-2010 01:12 AM

Quote:

Originally Posted by liefdesdichter (Post 2092957)
nice one but VDR was better google was possible en there was a better config menu

Actually, this one is better than VDR. Google video only worked on VDR because someone else (not me) made an XML for google that parsed the ENTIRE google page and simply pulled the relevant data. There was no error checking, no API and no meta at all. VDR worked on APIs only. This mod uses APIs and meta. I didn't support Google on VDR, and right now its not supported either.

Quote:

Originally Posted by Ninos (Post 2092864)
It's probably been asked before, but you gotta understand that there's 96 pages to root thru.

How do I remove the "media" tab from the navigation bar?I'm using a custom navigation tabs mod and I'm linking to the seperate categories direct and therefore I don't have any use for the 'media' tab if you get me. See it wouldn't be a problem but if I disable the navtab plugin it removes ALL related navigation too (eg. the secondary navigation links).

Disable the plugin "media NAVTAB"

Quote:

Originally Posted by bada_bing (Post 2092853)
Any Help please

MonkeySee is not supported right now.

Quote:

Originally Posted by cloferba (Post 2092683)
where i can find more services on xml format...to import them?

thanks! amazing mod!

What service are you looking for?

Jaxel 09-03-2010 02:07 AM

1 Attachment(s)
GOOGLE VIDEO...

God its so hard to program with a broken keyboard. On-Screen Keyboard sucks.

michaelmash 09-03-2010 03:00 AM

hi jaxel .

please make xml for youku.com and tudou.com

i make those two XML base on youtube.xml change the domain name and some regex, it can parse url but cant get media ,say some media wrong with the url. i dont know why. if we need parse new site just need do the xml template or we need change some php code?

Jaxel 09-03-2010 03:18 AM

Quote:

Originally Posted by michaelmash (Post 2093085)
hi jaxel .

please make xml for youku.com and tudou.com

i make those two XML base on youtube.xml change the domain name and some regex, it can parse url but cant get media ,say some media wrong with the url. i dont know why. if we need parse new site just need do the xml template or we need change some php code?

Please show me what you've already done, so I can tell you waht you did wrong.

Ninos 09-03-2010 04:03 PM

Quote:

Originally Posted by Jaxel (Post 2093066)
Disable the plugin "media NAVTAB"

Thanks for the reply Jaxel, but as I mentioned in my post (at least I think I did anyway) not only does this remove the main tab on the nav bar, but it removes all the secondary navigation links too. I need those links so I can upload additional media etc. so is there a way of removing the tab "Media" WITHOUT removing the 8wayrun media navigation too?

I hope that makes sense.

COL NIL SATIS 09-03-2010 04:10 PM

Jaxel is it possible to embed Veetle into VB forums like you can with Youtube, JTV, Ustream etc...?

EquinoxWorld 09-03-2010 04:20 PM

Quote:

Originally Posted by Ninos (Post 2093331)
Thanks for the reply Jaxel, but as I mentioned in my post (at least I think I did anyway) not only does this remove the main tab on the nav bar, but it removes all the secondary navigation links too. I need those links so I can upload additional media etc. so is there a way of removing the tab "Media" WITHOUT removing the 8wayrun media navigation too?

I hope that makes sense.

Try this:

In the 8WR_media_NAVTAB delete :

Code:

<a class="navtab" href="media.php{vb:raw session.sessionurl_q}">{vb:phrase media}</a>
and

Code:

<li><a class="navtab" href="media.php?{vb:raw session.sessionurl}">{vb:phrase media}</a></li>
Remember to back up your template before trying any edits!

Ninos 09-03-2010 04:38 PM

Thanks for that EquinoxWorld, but where is that found? I've opened the 8WR_media_NAVTAB plugin but this is all the code I got:

Code:

if (THIS_SCRIPT == '8WR_media')
{
        require_once(DIR.'/media/media_functions_hrefs.php');
        require_once(DIR.'/media/media_functions_perms.php');

        $perms = media_permissions();

        $vbulletin->options['selectednavtab'] = 'media';

        $categories = $vbulletin->db->query_read("
                SELECT * FROM ".TABLE_PREFIX."media_category
                WHERE catOrder != '0'
                ORDER BY catOrder
        ");

        $href['playlists'] = construct_href_playlists();
        $href['pmine'] = construct_href_playlists_mine();
        $href['pcreate'] = construct_href_playlists_create();
        $href['favorites'] = construct_href_favorites();
        $href['subscriptions'] = construct_href_subscriptions();
        $href['submit'] = construct_href_submit();
        $href['random'] = construct_href_random();
        $href['cats'] = construct_href_admin("cats");
        $href['tags'] = construct_href_admin("tags");
        $href['host'] = construct_href_admin("host");

        while ($category = $vbulletin->db->fetch_array($categories))
        {
                $category['href'] = construct_href_category($category);

                $category['align'] = "";
                for ($i = 0; $i < $category['catDepth']; $i++) { $category['align'] .= '-- '; }

                $templater = vB_Template::create('8WR_media_NAVTAB_cat');
                $templater->register('category', $category);
                $categorybits .= $templater->render();
        }
}

$templater = vB_Template::create('8WR_media_NAVTAB');
$templater->register('perms', $perms);
$templater->register('href', $href);
$templater->register('categorybits', $categorybits);
$template_hook['navtab_middle'] .= $templater->render();

Looks like that code is either within one of the following files perhaps:

media/media_functions_hrefs.php
media/media_functions_perms.php

Thanks again your help is appreciated

EquinoxWorld 09-03-2010 04:42 PM

Quote:

Originally Posted by Ninos (Post 2093341)
Thanks for that EquinoxWorld, but where is that found? I've opened the 8WR_media_NAVTAB plugin but this is all the code I got:

Code:

if (THIS_SCRIPT == '8WR_media')
{
        require_once(DIR.'/media/media_functions_hrefs.php');
        require_once(DIR.'/media/media_functions_perms.php');

        $perms = media_permissions();

        $vbulletin->options['selectednavtab'] = 'media';

        $categories = $vbulletin->db->query_read("
                SELECT * FROM ".TABLE_PREFIX."media_category
                WHERE catOrder != '0'
                ORDER BY catOrder
        ");

        $href['playlists'] = construct_href_playlists();
        $href['pmine'] = construct_href_playlists_mine();
        $href['pcreate'] = construct_href_playlists_create();
        $href['favorites'] = construct_href_favorites();
        $href['subscriptions'] = construct_href_subscriptions();
        $href['submit'] = construct_href_submit();
        $href['random'] = construct_href_random();
        $href['cats'] = construct_href_admin("cats");
        $href['tags'] = construct_href_admin("tags");
        $href['host'] = construct_href_admin("host");

        while ($category = $vbulletin->db->fetch_array($categories))
        {
                $category['href'] = construct_href_category($category);

                $category['align'] = "";
                for ($i = 0; $i < $category['catDepth']; $i++) { $category['align'] .= '-- '; }

                $templater = vB_Template::create('8WR_media_NAVTAB_cat');
                $templater->register('category', $category);
                $categorybits .= $templater->render();
        }
}

$templater = vB_Template::create('8WR_media_NAVTAB');
$templater->register('perms', $perms);
$templater->register('href', $href);
$templater->register('categorybits', $categorybits);
$template_hook['navtab_middle'] .= $templater->render();

Looks like that code is either within one of the following files perhaps:

media/media_functions_hrefs.php
media/media_functions_perms.php

Thanks again your help is appreciated

It is actually a lot easier than that my friend. It is in the template 8WR_media_NAVTAB . No edit to plug-ins or files required. One is near the beginning and the other almost at the end.

Ninos 09-03-2010 04:54 PM

Quote:

Originally Posted by EquinoxWorld (Post 2093344)
It is actually a lot easier than that my friend. It is in the template 8WR_media_NAVTAB . No edit to plug-ins or files required. One is near the beginning and the other almost at the end.

Thanks a lot for that, I found and removed the specified coding and can confirm it works! +rep really appreciated

EquinoxWorld 09-03-2010 04:55 PM

Quote:

Originally Posted by Ninos (Post 2093347)
Thanks a lot for that, I found and removed the specified coding and can confirm it works! +rep really appreciated

No problem Ninos . Thanks for the rep.

Ninos 09-03-2010 07:15 PM

By the way, on category view the thumbnails are meant to be 3 per row right?

Cause I only got 2 per row and it's not like I got a small layout either, should be enough room to find them and not overflow onto the next line.

If so, I'll PM someone my URL to look at it, if not I'd appreciate someone telling me how to list 3 per row.

Sorry for all the requests btw.

Jaxel 09-03-2010 10:38 PM

Quote:

Originally Posted by Ninos (Post 2093396)
By the way, on category view the thumbnails are meant to be 3 per row right?

Cause I only got 2 per row and it's not like I got a small layout either, should be enough room to find them and not overflow onto the next line.

If so, I'll PM someone my URL to look at it, if not I'd appreciate someone telling me how to list 3 per row.

Sorry for all the requests btw.

This mod is setup by DEFAULT for forums with a width of 990 pixels. Unfortunately, the people who designed the styles of VB4 are retarded. They set the doc_margin setting to 35 pixels for left and right, so that no matter what, your browser throws out 70 pixels of width which could be used more constructively... Which means if you have your resolution set to 1024x768, you only have about 932 pixels of width for your website (1024-70-22(scroll bar)=932).

If you use a DYNAMIC WIDTH setting on your browser, I recommend you change this dumb default setting to something more sensible... like 5 instead of 35... If you use a FIXED WIDTH (I use 990), you should set these settings to "auto" instead of 35.

Ninos 09-03-2010 11:56 PM

Quote:

Originally Posted by Jaxel (Post 2093459)
If you use a DYNAMIC WIDTH setting on your browser, I recommend you change this dumb default setting to something more sensible... like 5 instead of 35... If you use a FIXED WIDTH (I use 990), you should set these settings to "auto" instead of 35.

I'm using a custom designed theme and I'm a pretty good judge on pixel margins etc (yes great achievement i know LOL) but I'm 100% sure I don't have a 35px margin on either side. The MAX it's gotta be is approx. 20px each side, and I'm either using a 980 or 990 fixed width.

Are those specifications still too big?

Thanks

EDIT: Looking back, that's a pretty dumb question. Of course the margins are still too big otherwise it would display fine. Would i simply be able to edit a CSS/Styling file relating to YOUR mod rather than my custom skin to get this work? If so it'd be great if you could give me some basic instructions. Thnaks

cevo 09-04-2010 12:27 AM

I can't see the comment box below each video. How can I fix this ?
Even I have configured the permission correctly.

bornoffire 09-04-2010 11:18 PM

When I click on these option on the navbar it gives me a blank white screen with "Page not found" I tried uploading files again but had no luck. :(

* Submit Media
* Random Media
* Administrate:
* Tags
* Categories
* Services

bornoffire 09-05-2010 12:15 AM

It looks like its sending me to the wrong spot. When I click tag it trys to send me to media/admin/tags instead of media.php?do=admin_tags . Any ideas on how to fix this?

Merjawy 09-05-2010 05:58 AM

Had to uninstall.. too much thinking I saw smoke comin triggered smoke alarm

gabned 09-05-2010 02:56 PM

I've tried to install this mod, but when I'm trying to import the product, it returns me this sentences:

Quote:

Altering Table usergroup ...Done!
Altering Table user ...Done!

Creating Table media ... Done!
Creating Table media_category ... Done!
-- Adding Category Row General ...
What I have to do to have this mod working?

Thank you!!

raiderlax 09-06-2010 04:39 AM

When I turn SEO on and I go to the media library videos it shows "Page not found". How do I fix this? I do have vBSEO installed btw.

ryand26 09-06-2010 05:07 AM

Quote:

Originally Posted by raiderlax (Post 2094422)
When I turn SEO on and I go to the media library videos it shows "Page not found". How do I fix this? I do have vBSEO installed btw.

Did you change the...

"Should URLs within the media library be slugged for SEO? (htaccess required)"

in the settings/options/8WayRun.Com - Media Library Details to no?

raiderlax 09-06-2010 05:11 AM

Quote:

Originally Posted by ryand26 (Post 2094426)
Did you change the...

"Should URLs within the media library be slugged for SEO? (htaccess required)"

in the settings/options/8WayRun.Com - Media Library Details to no?

It was on "no" then I changed it to "yes" and it was showing "page not found".. now I have switched it back to "no" to have it working...

ryand26 09-06-2010 05:16 AM

Yeah I had it on myself, and then read on vbseo that it shouldn't be turned on. There's some pretty good detail on vbseo as well about setting up some CRR's and tweaking your sitemap also. Here's one of the threads...

http://www.vbseo.com/f23/media-libra...e-rules-43754/

There's a few others as well, but if you search on the site you should find everything you need.

raiderlax 09-06-2010 05:22 AM

Thanks a lot. I found how to make the media titles in the urls, http://www.vbseo.com/f23/media-libra...54/#post272451

raiderlax 09-06-2010 05:51 AM

Quote:

Originally Posted by ryand26 (Post 2094429)
Yeah I had it on myself, and then read on vbseo that it shouldn't be turned on. There's some pretty good detail on vbseo as well about setting up some CRR's and tweaking your sitemap also. Here's one of the threads...

http://www.vbseo.com/f23/media-libra...e-rules-43754/

There's a few others as well, but if you search on the site you should find everything you need.

It looks like it only works on the "category" links, but not the video page links.

Jaxel 09-06-2010 03:20 PM

The object embed method is being revamped once again...

The reason for this is I am starting to run across websites that are requiring extra parameters. Whether it be javascript, or even iframes. With this new version, it should be compatible with EVERY video hosting service on the net (provided you make XML files for them). The chief example will be NICO NICO DOUGA VIDEO!

liefdesdichter 09-06-2010 05:51 PM

for vdr there was a -video_forumhomelist.xml dont you have it for this one?

Jaxel 09-06-2010 07:03 PM

EXAMPLES:

NICO NICO DOUGA: http://www.8wayrun.com/media/m1603-nicovideo
GOOGLE VIDEO: http://www.8wayrun.com/media/m1597-google-video

pincherplayer 09-06-2010 10:06 PM

Very Nice!

http://pincherplay.com/forum

COL NIL SATIS 09-07-2010 02:12 PM

Quote:

Originally Posted by Jaxel (Post 2094711)

Looks Great Jaxel :)

Strafe 09-08-2010 11:33 PM

Nevermind, can't reproduce it on other machines.

johncosta71292 09-11-2010 06:56 PM

this may sound stupid, but how do i get a ustream one to work?

everytime I put a to link/person profile I get a message saying "Could not parse media URL."

the url I'm trying to use is:
Code:

http://www.ustream.tv/flash/live/1/5653727?v3=1
I also tried:
Code:

http://www.ustream.tv/channel/ssssdddaas
help me please

biggeorge 09-11-2010 09:03 PM

Installed and running on 4.0.6

RobbieZ 09-11-2010 10:42 PM

@Jaxel: I've reduced my forum width so now the media is only two across instead of the usual three, is it possible to reduce white backgrounds that the media sits on so I can have three across again?

:D

bioload 09-12-2010 04:18 AM

Installed and running on 4.0.6......Thanks

Is it possible to add facebook integration to the media section as well?

RobbieZ 09-12-2010 05:50 AM

Quote:

Originally Posted by johncosta71292 (Post 2096843)
this may sound stupid, but how do i get a ustream one to work?

everytime I put a to link/person profile I get a message saying "Could not parse media URL."

the url I'm trying to use is:
Code:

http://www.ustream.tv/flash/live/1/5653727?v3=1
I also tried:
Code:

http://www.ustream.tv/channel/ssssdddaas
help me please

Those look like live channels, you can only embed pre-recorded.

johncosta71292 09-12-2010 10:01 AM

Quote:

Originally Posted by RobbieZ (Post 2097004)
Those look like live channels, you can only embed pre-recorded.

oh no :( is there any chance of the developer of this mod to develop a way to watch live streams?

John

Jaxel 09-12-2010 11:55 AM

You can put live streams into this.... Don't know why it didn't work for you. I'm not home this weekend so i can't look into it for you. (watch my live stream at noon http://www.ustream.tv/channel/8wayrun)

I an working on revamping the live stream system into a calendar and that will be out in a few weeks.

betts02 09-12-2010 12:55 PM

Well i have just installed this on vb4.0.5 and it looks to be working fine for youtube vids which is what i only use

But where/how do i add categorys ?

cheers

RobbieZ 09-12-2010 03:12 PM

Quote:

Originally Posted by johncosta71292 (Post 2096843)
this may sound stupid, but how do i get a ustream one to work?

everytime I put a to link/person profile I get a message saying "Could not parse media URL."

the url I'm trying to use is:
Code:

http://www.ustream.tv/flash/live/1/5653727?v3=1
I also tried:
Code:

http://www.ustream.tv/channel/ssssdddaas
help me please

Both dont work on Jaxel's site either, just tried

Quote:

Originally Posted by betts02 (Post 2097091)
Well i have just installed this on vb4.0.5 and it looks to be working fine for youtube vids which is what i only use

But where/how do i add categorys ?

cheers

Hit the Media Tab and look at the navbar, admin - categorys.


All times are GMT. The time now is 04:03 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.02807 seconds
  • Memory Usage 1,861KB
  • 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
  • (21)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