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)

BF777 03-21-2011 09:52 PM

Quote:

Originally Posted by RK KINGKONG (Post 2139167)
IT TOOK ME A WHILE TO GET IT RIGHT DUE TO LACK OF SKILLS IN INSTALLING ,ETC..... BUT WITH HELP FROM THIS MEMBER Juggernaut I GOT IT , THANK YOU SORRY BOUT THE CAPS I AM EXCITED LOL . running on VB 4.1 patch 2 as of 12/26/10

happy new year everyone

How did you solve the problem? I'm getting that same warning error right now.

BF777 03-21-2011 10:04 PM

Quote:

Originally Posted by rborge (Post 2173085)
Dirtbanger,

I got the same error and it was because I was installing the files into the "forum" folder and not the root (the folder which contains the "forum" folder). Once I installed them one level up into the root, it worked like a charm.

Rick

That's strange. I'm installing them from root but I keep getting the same error.

skol 03-22-2011 11:51 AM

Quote:

Originally Posted by BF777 (Post 2175958)
That's strange. I'm installing them from root but I keep getting the same error.


Directory structure,you have files in wrong place..

BF777 03-22-2011 04:35 PM

Quote:

Originally Posted by skol (Post 2176169)
Directory structure,you have files in wrong place..

Well, I put them in the root as instructed. I'm still scratching my head.

skol 03-22-2011 05:43 PM

Quote:

Originally Posted by BF777 (Post 2176261)
Well, I put them in the root as instructed. I'm still scratching my head.

But are they all in the right place in the root......I'd check,have this running on 4.1.2 no problem..

NunzioG 03-23-2011 11:52 PM

HELLO !!

I have this error, and MEDIA not run ...

Fatal error: Call to undefined function construct_href_playlists() in /public_html/forum/includes/class_bootstrap.php(537) : eval()'d code on line 197

Please Help Me !!!

BF777 03-25-2011 03:21 PM

Quote:

Originally Posted by skol (Post 2176286)
But are they all in the right place in the root......I'd check,have this running on 4.1.2 no problem..

Well, I just put them in the root like the instructions stated. Are these files suppose to be somewhere else?

GRJoker 03-28-2011 10:30 PM

is there a way to change the width the stats area on the right hand side? If you can show me were to look I would really appreciate it.

Thank You
Joker
www.CircleIX.com

zapiy 04-02-2011 09:21 PM

Does this have thread intergration yet?

Cheers

blue6995 04-06-2011 12:40 PM

Imported in Metacafe vids and all went well; however, when trying to play them in IE8 all you get when ckicking the Play Button in the middle of the vid is a black screen!

Any ideas how to resolve this?

Thanks

m411b 04-07-2011 04:51 AM

How would I go about removing the "Media" tab? The tab is fine but I have my own tab system and want to use that instead.

Thanx in advance

EDIT: NM Got it thanx

m411b 04-07-2011 09:51 PM

New problem! I fixed my tab issue but now there is no sub menu for upload, admin, or anything. I have searched the entire thread for an answer but there is no resolution! I have added the "Known Bug" fix because I am using VSA Chatbox. The thing is, is that when I first install it. The submenu is there but when I refresh the page it goes bye bye.

Any help would be much appreciated.

mikem164 04-08-2011 07:45 PM

Quote:

Originally Posted by GRJoker (Post 2178548)
is there a way to change the width the stats area on the right hand side? If you can show me were to look I would really appreciate it.

Thank You
Joker
www.CircleIX.com

I too would like to know!

asking 04-11-2011 03:58 AM

Please where i can find facebook xml video hoster. Please for help?

Here is the sample facebook video link http://www.facebook.com/v/110451499036058

Please verify this:

Code:

<?xml version="1.0" encoding="ISO-8859-1"?>

<videohoster varname="Facebook" classname="facebook" active="1">
        <title>Facebook</title>
        <regex />
        <author>Test by Me</author>
        <version>1.2.4</version>
        <class_file><![CDATA[<?php
/**
 * Class to fetch and handle Facebook
 *
 */
class vB_VideoSharingService_Facebook extends vB_VideoSharingService
{
        var $hostername = 'Facebook';

        function vB_VideoSharingService_Facebook(&$registry)
        {
                parent::vB_VideoSharingService($registry);

                $this->settings =& $this->registry->videohosters[$this->hostername]['settings'];
        }

        function verify_service(&$url)
        {
                $matches = array();

                $this->url = $url;

                if (preg_match('/http://www\.facebook\.com\/\?v([\w]+)&*[\w;=]*]/i', $url, $matches))
                {
                        $this->video_id = $matches[1];
                        return true;
                }

                return false;
        }

        function prepare_data()
        {
                if (!$this->verify_videoid())
                {
                        return false;
                }

                //Request Video Data
                $vurl = new vB_vURL($this->registry);
                $vurl->set_option(VURL_URL, 'idontknowwhattoputhere' . $this->video_id);
                $vurl->set_option(VURL_USERAGENT, 'vBulletin/' . FILE_VERSION . ' | Video Directory');
                $vurl->set_option(VURL_RETURNTRANSFER, 1);
                $vurl->set_option(VURL_TIMEOUT, 30);
                $result = $vurl->exec();

                if ($vurl->fetch_error())
                {
                        $this->set_error(VSS_ERROR_CONNECTION);
                        return false;
                }

                require_once(DIR . '/includes/class_xml.php');

                $xmlobj = new vB_XML_Parser($result);

                if(!$arr = $xmlobj->parse())
                {
                        $this->set_error(VSS_ERROR_RESPONSE);
                        return false;
                }

                preg_match('/[\w+%.-]*'.$this->video_id.'([\w]*)[\w+%.-]*/i', $arr['ROW']['embed'], $image);

                $this->thumbnailpath = 'idontknowwhattoputhere';
                $this->videodescription = urldecode($arr['ROW']['description']);
                $this->videotitle = urldecode($arr['ROW']['title']);
                $this->taglist = urldecode($arr['ROW']['title']);
                $this->timelength = $arr['ROW']['runtime'];

                return true;
        }

        function file_save_thumbnail()
        {
                if (!$this->fetch_thumbnailpath() OR !$this->fetch_videoid())
                {
                        return false;
                }

                require_once(DIR . '/includes/class_vurl.php');
                $vurl = new vB_vURL($this->registry);
                $vurl->set_option(VURL_URL, $this->fetch_thumbnailpath());
                $vurl->set_option(VURL_RETURNTRANSFER, true);
                $result = $vurl->exec();

                $fp = fopen(DIR . '/' . $this->registry->options['videodirectory_thumbnaildir'] . '/' . $this->hostername . '/' . $this->fetch_videoid() . '.jpg', 'wb');
                fwrite($fp, $result);
                fclose($fp);
        }

        function fetch_embedcode($videoid = '', $autoplay = 1, $fullscreen = 1, $related = 0, $stats = 0)
        {
                $videoid = $videoid ? $videoid : $this->video_id;

                if ($fullscreen == 1) { $fullscreen = 'true'; } else { $fullscreen = 'false'; }
                if ($autoplay == 1) { $autoplay = 'true'; } else { $autoplay = 'false'; }

                return '<embed src="http://www.facebook.com/v/' . $videoid . '" autoplay="' . $autoplay . '" type="application/x-shockwave-flash" allowfullscreen="' . $fullscreen . '" width="640" height="480"></embed>';
        }

        function fetch_videobbcode($vid, $videoid = '', $videotitle = '')
        {
                $videoid = $videoid ? $videoid : $this->video_id;
                $videotitle = $videotitle ? $videotitle : $this->video_title;

                if ($this->registry->options['videodirectory_bbcode'])
                {
                        return '[video=' . $videotitle . ']' . $vid . '[/video]';
                }
                else
                {
                        return '[' . $this->hostername . '=' . $videotitle . ']' . $videoid . '[/' . $this->hostername . ']';
                }
        }

        function fetch_videourl($videoid = '')
        {
                $videoid = $videoid ? $videoid : $this->video_id;

                return 'http://www.facebook.com/v/' . $videoid;
        }
}

?>]]></class_file>
</videohoster>


caracena 04-14-2011 01:33 AM

Hi Jaxel,

I use VDR on my 3.8 vB but I'm working (locally on my PC) on updating vB to 4.1.3. I've only imported the DB and made a fresh install of vB 3.8 and then update vB. I don't have the original VDR files installed and the plugin is gone too. What's my best shot at installing this new MOD without loosing all the videos my users have posted in the past?

Thanks for any advice!

kinhell 04-17-2011 09:05 PM

Can anyone tell me how I can do images with this?

YkudzA 04-18-2011 08:25 PM

1) How to delete category?
2) How to add New Service w/o xml?

EquinoxWorld 04-23-2011 12:54 AM

Can anyone get MegaVideo to retrieve thumbnails with the latest definitions? They work but not with ImageMagick..anyone else getting this?

vnairp11 04-24-2011 12:01 PM

1 Attachment(s)
I wanna say this is an excellent mod.. i just have one issue how can i clear the black backgrounds off menus and keep it plain? pic attached

tlwwolfseye 04-26-2011 07:49 PM

Quote:

Originally Posted by red-dna (Post 2158752)
You will have to...uninstall the latest version (leave the files on ur webeserver) and then install 1.1 (overwrite the files) and then install 1.7 (press yes on the adminpc and overwrite again the files) and then use the localvideo:video tag. For example if the video is 4.flv, use localvideo:4.flv - And so on :)

Tried that, had an .AVI Video (Xvid) but all I got was a nonstop video loading bar, nothing else happend.

So now I ditched all my recent videos added to make this work, and now it doesn't even work. Great.

asf137 04-26-2011 09:38 PM

Great app, using it, but is there a way to upload and import videos from the local server ?

asf137 04-26-2011 09:39 PM

Quote:

Originally Posted by asf137 (Post 2189044)
Great app, using it, but is there a way to upload and import videos from the local server ?

I found how, thank you

jsalgado1981 04-28-2011 07:37 PM

Great mod. Thank you

K4GAP 04-30-2011 09:20 PM

I'm having a helluva time finding how to add categories.... I'm the administrator and have made sure user group for administrator permissions are set to all yes for this mod. Still, there is no visible Admin link on page showing the videos ?/

Any ideas?

caracena 05-01-2011 05:51 AM

Hi Jaxel, I have the mod working almost perfectly but I do have one little problem + one suggestion:

Problem: The videos with unlauts appear as strange symbols (i.e. Uni?n de L?nea converts into UniĆ³n de L?+nea). This happens in title, description and tags.

Suggestions: Put a field in the 8WayRun.Com options page so we can enter the ID of who's gonna be posting the announcements into a specific forum (last option on the list). This way, we could have a closed forum (just to inform users about new videos) that only an Administrator can automatically post a new thread when any user submits new media into the library.

The suggestion is to avoid having the announcement forum open so users leave comments for videos inside the videos themselves and not on both the videos and forum.

Thanks in advance ;)

caracena 05-02-2011 11:48 AM

HI Jaxel,

I'm getting the following MySQL errors:

EDIT: NVM, the errors appear when people clicks on videos posted automatically on my old "videos" forum by VDM.

Thanks!

caracena 05-02-2011 02:34 PM

Guys, does anyone have any idea on how to make a custom service XML for mpora.com?

K4GAP 05-03-2011 02:33 AM

Quote:

Originally Posted by GaryT (Post 2190471)
I'm having a helluva time finding how to add categories.... I'm the administrator and have made sure user group for administrator permissions are set to all yes for this mod. Still, there is no visible Admin link on page showing the videos ?/

Any ideas?

I take it the developer is AWOL?

Marka Ragnos 05-03-2011 02:43 PM

Quote:

Originally Posted by GaryT (Post 2190471)
I'm having a helluva time finding how to add categories.... I'm the administrator and have made sure user group for administrator permissions are set to all yes for this mod. Still, there is no visible Admin link on page showing the videos ?/

Any ideas?

The link should appear next to random media with some space in between.
Just to be clear you can see media page right? The link is active in the navbar?

Jaxel 05-03-2011 05:42 PM

Quote:

Originally Posted by GaryT (Post 2191210)
I take it the developer is AWOL?

The developer has withdrawn all support for his vBulletin mods as a statement against Internet Brands and the way they treat their customers. He now programs exclusively for XenForo.Com. The developer of this mod is not the first to take such an action, nor will he be the last.

http://xenforo.com/community/threads...io-media.8092/

K4GAP 05-03-2011 06:34 PM

Quote:

Originally Posted by Marka Ragnos (Post 2191358)
The link should appear next to random media with some space in between.
Just to be clear you can see media page right? The link is active in the navbar?

Everything is where it should be except a link to add categories. The mod works fine and yes the link to "Media" is on the navbar.

K4GAP 05-03-2011 06:37 PM

Quote:

Originally Posted by Jaxel (Post 2191430)
The developer has withdrawn all support for his vBulletin mods as a statement against Internet Brands and the way they treat their customers. He now programs exclusively for XenForo.Com. The developer of this mod is not the first to take such an action, nor will he be the last.

http://xenforo.com/community/threads...io-media.8092/

Well then I suggest you put it in big bold letters above the description.

caracena 05-03-2011 06:52 PM

Quote:

Originally Posted by Jaxel (Post 2191430)
The developer has withdrawn all support for his vBulletin mods as a statement against Internet Brands and the way they treat their customers. He now programs exclusively for XenForo.Com. The developer of this mod is not the first to take such an action, nor will he be the last.

http://xenforo.com/community/threads...io-media.8092/

Quote:

Originally Posted by GaryT (Post 2191446)
Well then I suggest you put it in big bold letters above the description.

Totally agree with GaryT. Besides you should know Jaxel that leaving enough users to write 133 pages of replies with such a stupid statement like that has just gave most of us a HUGE reason NOT to turn to Xenforo. I will not use Xenforo EVER as a statement against programmers that leave their users hanging with a beautifull piece of software that will become useless in a few months and becouse of our forum users liking it, we are stuck with a version of vBulletin that can't be upgraded.

BTW when you say "withdrawn all support" and "programs exclusively for XenForo.Com" you are giving us permission to do whatever we want with your code for vBulletin mods, except posting a new version made out of it without mayor modifications. Thanks.

EquinoxWorld 05-03-2011 07:05 PM

Quote:

Originally Posted by caracena (Post 2191450)
Totally agree with GaryT. Besides you should know Jaxel that leaving enough users to write 133 pages of replies with such a stupid statement like that has just gave most of us a HUGE reason NOT to turn to Xenforo. I will not use Xenforo EVER as a statement against programmers that leave their users hanging with a beautifull piece of software that will become useless in a few months and becouse of our forum users liking it, we are stuck with a version of vBulletin that can't be upgraded.

BTW when you say "withdrawn all support" and "programs exclusively for XenForo.Com" you are giving us permission to do whatever we want with your code for vBulletin mods, except posting a new version made out of it without mayor modifications. Thanks.

Could not have said it better myself. That is not a statement your making, what your doing is abandoning your work. You think vb cares about you or where you go? On the other hand we do, the people that fallow your mods and your work (which is exceptional btw), yet you are abandoning us to prove a point to someone that to be honest I am SURE does NOT care one bit about what you do or where you go. It' sad that this mod will eventually die along with A LOT of boards out there who rely on it. That being said I also very much agree for you to put something in BIG bold letters at the top of this mod that it is NOT supported so no other sites will use it on a production level and then be stuck with it like many of us are.

K4GAP 05-03-2011 10:50 PM

NO SUPPORT FOR THIS MOD!

Well since you abandoned this mod, you NO LONGER own it, correct?

May I suggest it be placed in the graveyard with a bold prefix that it is no longer supported?

YkudzA 05-04-2011 05:52 AM

installed on cncrussia.ru , looks gr8!

asking 05-04-2011 09:58 AM

Do you know how to make a facebook video hoster?

Jaxel 05-04-2011 01:58 PM

Quote:

Originally Posted by GaryT (Post 2191446)
Well then I suggest you put it in big bold letters above the description.

The yellow icon that says "NOT SUPPORTED" is more than enough. The graveyard is reserved for mods that no longer work. This mod works perfectly fine. As someone who doesn't have a vBulletin license anymore, I couldn't support this mod even if I wanted to.

Quote:

Originally Posted by caracena (Post 2191450)
Totally agree with GaryT. Besides you should know Jaxel that leaving enough users to write 133 pages of replies with such a stupid statement like that has just gave most of us a HUGE reason NOT to turn to Xenforo. I will not use Xenforo EVER as a statement against programmers that leave their users hanging with a beautifull piece of software that will become useless in a few months and becouse of our forum users liking it, we are stuck with a version of vBulletin that can't be upgraded.

Incorrect. The power of vBulletin has always been it's mod community. Without it's mod community, vBulletin becomes nothing more than an extremely expensive version of phpBB. IB absolutely cares about us, and many of us have already abandoned the platform.

That being said, this mod is a secluded system. In all reality it should not break with any subsequent upgrade to vB4; unless IB really messes things up. I honestly can't understand how you guys still have faith in them. They had to shut down their own forum and rollback to a previous version today because they couldn't implement their own software correctly.

If you want the newest version of this mod, it will be on XenForo... thats just the way it is.

Quote:

Originally Posted by GaryT (Post 2191503)
Well since you abandoned this mod, you NO LONGER own it, correct?

Also incorrect.

8thos 05-04-2011 04:30 PM

Hey Jaxel! I love this mod man. I looked at a demo on your site and it showed a JWPlayer playlist. How do I upload that? Is that a site or do you have to download jplayer and then upload it to a server or something I'm a little confused about that. I don't see anything in your manual about it.

Jaxel 05-07-2011 01:46 PM

Quote:

Originally Posted by Octavius. (Post 2191751)
Hey Jaxel! I love this mod man. I looked at a demo on your site and it showed a JWPlayer playlist. How do I upload that? Is that a site or do you have to download jplayer and then upload it to a server or something I'm a little confused about that. I don't see anything in your manual about it.

You mean these?
http://www.8wayrun.com/media/categor...sountracks.23/

You'll need to be running XenForo to get the newest version of this software.


All times are GMT. The time now is 02:36 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.04115 seconds
  • Memory Usage 1,865KB
  • 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
  • (1)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