vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - Video-Directory Remixed (https://vborg.vbsupport.ru/showthread.php?t=200819)

asking 04-15-2011 07:14 AM

Please in need your help code. Thanks

haytham 04-15-2011 07:33 AM

How can I make a backup of the whole script? I intend to move my forum so how can I keep my directory in tact? Please someone help as I need to know if this is possible or not. Thank you.

asking 04-15-2011 01:04 PM

Quote:

Originally Posted by haytham (Post 2184860)
How can I make a backup of the whole script? I intend to move my forum so how can I keep my directory in tact? Please someone help as I need to know if this is possible or not. Thank you.

Do you know how to create a facebook video xml? Please help?

3beidat 04-15-2011 09:58 PM

Hello, today when I tried to insert megavideo to video-directory i get this error
(The response of the video-server can't be read) !!!
how I can fix it?

and another question, can anybody made a xml file for duckload.com streaming?

asking 04-16-2011 10:27 AM

Please someone help me? For the Facebook video hoster. Please help me?

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

3beidat 04-16-2011 12:14 PM

It seems like there is no body want to help us!!

asking 04-17-2011 07:21 AM

You are right. Nobody want to help us. Btw, you know how to make hoster for facebook?

3beidat 04-18-2011 12:35 AM

I extremely hop that, because if I can make a hoster file for any hoster then I'll make files for more than 50 important vidoe hosts. But really I can't do and I'm not experienced in php programming. :(
BTW, Sorry for my bad english :P

asking 04-23-2011 03:23 AM

I see. I tried to make a facebook hoster, but its not working. Can you check please?

Quote:

<?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>

asking 04-27-2011 06:53 AM

Please someone reply and help us? Please?

Zarxrax 05-08-2011 06:41 PM

I need help with the following.

I have 4 categories for videos. I want to limit registered users to only be able to post new videos in 2 of those categories. Of course, administrator should be able to post to all categories.

thanks

asking 05-14-2011 11:35 AM

Please someone help us? Facebook video are famous now and actually we can embed facebook videos too. Please help us to make xml for facebook video.

asking 06-01-2011 05:32 AM

Please someone help about facebook video hoster?

Prorockz 07-03-2011 03:57 PM

got problem to open it ....

im use vbseo 3.6 .. on vb 3.8.7

when im click on http://www.xtremesharez.com/video.php

its show blank page ...

also when im click on host setting there is no setting option show . please help to fix it

https://vborg.vbsupport.ru/

asking 07-06-2011 05:19 AM

Quote:

Originally Posted by Prorockz (Post 2216267)
got problem to open it ....

im use vbseo 3.6 .. on vb 3.8.7

when im click on http://www.xtremesharez.com/video.php

its show blank page ...

also when im click on host setting there is no setting option show . please help to fix it

http://www.easyimageload.com/images/880_nohost_ste.jpg

I think you need to check the guide on how to use it with vbseo.

supercarsanctum 07-17-2011 07:34 PM

my problem is when i click on video directory it says i dont have permission to access it, and i am the admin. so how do i change this?

BigFooty 07-17-2011 11:54 PM

And the product demo link doesn't work.

I'd say this hack is abandoned.

loveyou-jesus 08-15-2011 10:50 AM

i whant to vb 368 pleaz

Kolektor 08-15-2011 01:10 PM

Quote:

Originally Posted by loveyou-jesus (Post 2233713)
i whant to vb 368 pleaz

Upgrade to 3.8.x better :)

Kolektor 08-15-2011 08:09 PM

Youtube is not working as it uses youtu.be urls now.
Is there any fix for this...

rockerzteam 08-18-2011 03:50 AM

Is this going to be updated. Seems it quit working on VB 3.8.7

rockerzteam 08-18-2011 04:37 AM

Code:

Warning: Invalid argument supplied for foreach() in [path]/includes/class_dm_video.php on line 154
I am getting this error while trying to add a video.

rockerzteam 08-18-2011 05:07 AM

Cant get this mod to work. I try adding a youtube video and it says unable to connect. I am wondering if theres a certain way to edit the hoster.

Kolektor 08-18-2011 03:59 PM

Quote:

Originally Posted by rockerzteam (Post 2234817)
Cant get this mod to work. I try adding a youtube video and it says unable to connect. I am wondering if theres a certain way to edit the hoster.

make sure you are using the youtube.com urls and not the youtu.be urls.

rockerzteam 08-18-2011 07:02 PM

Quote:

Originally Posted by Kolektor (Post 2234984)
make sure you are using the youtube.com urls and not the youtu.be urls.

I get this error!
Code:

There are some problems while trying to connect to the video-servide. Please try again later!

rockerzteam 08-22-2011 04:40 PM

Is there no more support for this mod?

MagicThemeParks 08-24-2011 08:45 PM

Shows "Not Supported" in the first post on each page. You'll have to depend on other community members within this thread for assistance.

Webdude? 09-08-2011 01:40 AM

Quote:

Originally Posted by Yurified (Post 2001745)
Ok we have tried to do this but we have some problems.
This is what i have got:

http://i169.photobucket.com/albums/u...g?t=1268346533

And above this i have these codings:
Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: video_catbit_small in [path]/includes/functions.php on line 3932

Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: video_home in [path]/includes/functions.php on line 3932

Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: VIDEO_SHELL_SIDE in [path]/includes/functions.php on line 3932

Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: navbar in [path]/includes/functions.php on line 3932

Parse error: syntax error, unexpected T_STRING in /home/yurified/public_html/video.php(903) : eval()'d code on line 1

Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: VIDEO_SHELL in [path]/includes/functions.php on line 3932

I also have this in profile: Warning: fetch_template() calls should be replaced by the vB_Template class. Template name: video_profile in [path]/includes/functions.php on line 3932

please help?

Did this ever get resolved?

rockerzteam 09-15-2011 11:10 PM

Quote:

Originally Posted by MagicThemeParks (Post 2237606)
Shows "Not Supported" in the first post on each page. You'll have to depend on other community members within this thread for assistance.

Ok. So is there anyone here currently using this on 3.8.7 that can give me a little advice on what to edit and fix.

Digital Jedi 09-16-2011 12:52 AM

I didn't quite understand what errors you were getting from your posts. The first, the last or both? If it's the last, it might have just been a YouTube issue. Haven't really used this in a while, but it was working fine on 3.8.x. Haven't tried it on .7.

JerichoLFG 09-27-2011 10:22 AM

How do you add categories?

rockerzteam 10-07-2011 08:19 PM

Quote:

Originally Posted by Digital Jedi (Post 2246560)
I didn't quite understand what errors you were getting from your posts. The first, the last or both? If it's the last, it might have just been a YouTube issue. Haven't really used this in a while, but it was working fine on 3.8.x. Haven't tried it on .7.

Code:

There are some problems while trying to connect to the video-servide. Please try again later!
I am getting this error after posting the url from youtube into the url spot. I hit load information and get this error.

sleepyboy2004 12-06-2011 09:46 AM

I lost the ability to add videos. When I click on add video it takes me to a blank page and this on the URL

http://sanantonioimports.com/video.p...eo&categoryid=

sleepyboy2004 12-06-2011 09:54 AM

Thats blank page was on FF and on IE I get

500 internal server

sleepyboy2004 12-19-2011 12:04 PM

Quote:

Originally Posted by ctvtec (Post 1937109)
Im getting a error..what should i do?


Fatal error: Call to undefined function construct_edit_toolbar() in /home/zonechil/public_html/ctvtec/video.php on line 1443

I'm having the same issue. Any help on this?

trotskid 01-02-2012 12:01 AM

Quote:

Originally Posted by rockerzteam (Post 2235046)
I get this error!
Code:

There are some problems while trying to connect to the video-servide. Please try again later!

Me too. Is there any fix for this?

trotskid 01-04-2012 09:18 AM

Quote:

Originally Posted by trotskid (Post 2282922)
Me too. Is there any fix for this?

So this mod doesn't work anymore with this problem? :confused: :confused:

I' ve reinstalled everything and still the same...

edit: was problem with the server, not from hack :)

viper357 01-27-2012 11:37 AM

edit: fixed

BGObsession 03-11-2012 02:54 AM

Quote:

Originally Posted by ctvtec
Im getting a error..what should i do?


Fatal error: Call to undefined function construct_edit_toolbar() in /home/zonechil/public_html/ctvtec/video.php on line 1443
I'm having the same issue. Any help on this?
Any help on this from anyone? This mod worked perfectly for me for years and now am unable to add videos. Thoughts/suggestions?

FreeEF 03-11-2012 11:24 AM

After installation, I can no longer invoke the admincp it just comes a white page.

I'm at my end Latain.

I hope you can help.

My VB version 3.8.1


All times are GMT. The time now is 07:41 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.03567 seconds
  • Memory Usage 1,831KB
  • 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
  • (4)bbcode_code_printable
  • (13)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)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