vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Major Additions - Video-Directory (https://vborg.vbsupport.ru/showthread.php?t=192241)

NAZIA 11-21-2008 08:25 PM

In RC2 ...
There is bug that I feel...At my board...

For metacafe Videos...
We can only add the Videos Url with the Integer values in the address
like this http://www.metacafe.com/watch/1238559

But we can't share http://www.metacafe.com/watch/yt-8Tfh2PnvTnY
sort of videos... yt-8Tfh2PnvTnY i.e both Integers and alphabets in URL after /

What do you say?

KW802 11-21-2008 10:04 PM

I have been searching for a video mod, free & commercial, and have just a few questions...

- Is there a branding free option available?

- Is the current version a prelude to there being a commercial (aka: pay) version in the future?

- Does the API code recognize YouTube videos that are flagged with the option to prevent embedding? (So that users do not try to add videos that can not be remotely embedded.)

- Does it have to be installed in the same folder as vBulletin? (My preference is that I can install it in a different folder like "MySite.com/videos" instead of "MySite.com/forums/video.php"?)


Thanks. :)

Surviver 11-21-2008 10:17 PM

Quote:

Originally Posted by NAZIA (Post 1670259)
In RC2 ...
There is bug that I feel...At my board...

For metacafe Videos...
We can only add the Videos Url with the Integer values in the address
like this http://www.metacafe.com/watch/1238559

But we can't share http://www.metacafe.com/watch/yt-8Tfh2PnvTnY
sort of videos... yt-8Tfh2PnvTnY i.e both Integers and alphabets in URL after /

What do you say?

Mmh. It seems that videos not having a numeric url are only embeded video from other videohosters (in this cas youtube) ...

Quote:

Originally Posted by KW802 (Post 1670300)
I have been searching for a video mod, free & commercial, and have just a few questions...

- Is there a branding free option available?

- Is the current version a prelude to there being a commercial (aka: pay) version in the future?

- Does the API code recognize YouTube videos that are flagged with the option to prevent embedding? (So that users do not try to add videos that can not be remotely embedded.)

- Does it have to be installed in the same folder as vBulletin? (My preference is that I can install it in a different folder like "MySite.com/videos" instead of "MySite.com/forums/video.php"?)


Thanks. :)

@Branding Free: Sende me a PM
@"prelude": At the moment, its not planned, to release a commercial version of THIS hack :)
@Flaggs: Yes - if the video may not be embedded, the user'll get a error message (when he tries to add the video :))
@Folder: It's in the same directory as vBulletin. But i added vBSEO Reqrite Rules to this hack - if you use vBSEO and them, your users will think, that the video directory is not a part of the forum (Example Url: forum.com/videos/funny-videos-2/new-hit-46.html)

Regards
Surviver

NAZIA 11-22-2008 12:05 AM

Videos for youtube are working fine...

KW802 11-22-2008 02:37 AM

Quote:

Originally Posted by passwords (Post 1668472)
Is there any way to stop " related videos " from youtube ?

Quote:

Originally Posted by passwords (Post 1668519)
Hello ..
at the end of youtube videos it show the related videos ( attached pic ) , some times the related video is for adult ( sex, vlc, etc .. ) and i dont want to show that on my forum ..

:)

Quote:

Originally Posted by doc1975 (Post 1668598)
I second that, only to keep the adult videos from being displayed... haven't noticed any myself as of yet, but lord I'd hate to have a member stumble across one.

Quote:

Originally Posted by Surviver (Post 1668631)
That has nothing to do with this hack - we use the default YouTube player - you'd have ro ask youtube.com :)

Actually.... ;)

For those who want to turn of the related YouTube videos, modify your /forums/includes/xml/videohoster-YouTube.xml and scroll down to near the bottom (with the current version it is the second to last function in the file) and find this bit of code:
Code:

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

  return '<object width="425" height="373"><param name="movie" value="http://www.youtube.com/v/' . $videoid . '&amp;rel=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6&amp;border=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/' . $videoid . '&amp;rel=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6&amp;border=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="373"></embed></object>';
 }

In that code several options are passed into the YouTube player via the query string. In this case, it is the "rel" option that needs to be changed. On the line that starts with "return" find the *two* instances of "&amp;rel=1" and change the "1" (true) to be a "0" (false) instead ("&amp;rel=0").

Save the file and refresh your page; the related videos should now be turned off. :)

KW802 11-22-2008 02:39 AM

Quote:

Originally Posted by Surviver (Post 1670311)
....

Thanks for the info; I'll get ya' on PM after I've had a chance to go through some of the options a bit more. :cool:

Daky 11-22-2008 02:54 AM

Quote:

Originally Posted by KW802 (Post 1670402)
Actually.... ;)

For those who want to turn of the related YouTube videos, modify your /forums/includes/xml/videohoster-YouTube.xml and scroll down to near the bottom (with the current version it is the second to last function in the file) and find this bit of code:
Code:

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

  return '<object width="425" height="373"><param name="movie" value="http://www.youtube.com/v/' . $videoid . '&amp;rel=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6&amp;border=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/' . $videoid . '&amp;rel=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6&amp;border=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="373"></embed></object>';
 }

In that code several options are passed into the YouTube player via the query string. In this case, it is the "rel" option that needs to be changed. On the line that starts with "return" find the *two* instances of "&amp;rel=1" and change the "1" (true) to be a "0" (false) instead ("&amp;rel=0").

Save the file and refresh your page; the related videos should now be turned off. :)

It does not work for me.

KW802 11-22-2008 02:57 AM

Quote:

Originally Posted by Daky (Post 1670410)
It does not work for me.

Did you save the file on your server? Do a hard refresh in your browser to make sure you were not viewing a cached page?

Daky 11-22-2008 03:04 AM

I saved, and tried 3 different browsers.
I also cleaned all cached\cookies\temporary files etc.

.. still doesn't work for me.

lets see ... if somebody else try ... (might be something wrong i did.. but .. )

thanks tho

KW802 11-22-2008 03:38 AM

Quote:

Originally Posted by Daky (Post 1670414)
I saved, and tried 3 different browsers.
I also cleaned all cached\cookies\temporary files etc.

.. still doesn't work for me.

lets see ... if somebody else try ... (might be something wrong i did.. but .. )

thanks tho

As you can see here (http://www.coolscifi.com/forums/vide...ails&videoid=3) it does work. When viewing the page on your site, if you do a 'view source' are you seeing the "rel" option changed to 0? And you are definitely changing both of the values?


EDIT: Hold that thought for now... looks like I may have missed something since I'm getting inconsistent results now. I'll be back.

KW802 11-22-2008 04:34 AM

Quote:

Originally Posted by KW802 (Post 1670433)
As you can see here (http://www.coolscifi.com/forums/vide...ails&videoid=3) it does work. When viewing the page on your site, if you do a 'view source' are you seeing the "rel" option changed to 0? And you are definitely changing both of the values?


EDIT: Hold that thought for now... looks like I may have missed something since I'm getting inconsistent results now. I'll be back.

OK, I figured it out... sorry for the delay. What I did not realize is that the application rebuilds the class file dynamically on the fly based upon the XML file. That means if you are already up & running then changing the XML file alone won't do you much good.

So... if you're are doing a fresh install, then modify the XML file with the instructions previously posted and it'll work.

But if this is an existing installation, then you'll need to 'reset' the YouTube provider settings. Modify the XML file either on your local machine or on your server. Select ACP => Video => Manage Hoster and *delete* the 'YouTube int.' entry. Now select Import Video-Hoster from the same screen and select the XML file that you modified. Now you should be fine. :)

Surviver 11-22-2008 06:38 AM

Quote:

Originally Posted by KW802 (Post 1670457)
OK, I figured it out... sorry for the delay. What I did not realize is that the application rebuilds the class file dynamically on the fly based upon the XML file. That means if you are already up & running then changing the XML file alone won't do you much good.

So... if you're are doing a fresh install, then modify the XML file with the instructions previously posted and it'll work.

But if this is an existing installation, then you'll need to 'reset' the YouTube provider settings. Modify the XML file either on your local machine or on your server. Select ACP => Video => Manage Hoster and *delete* the 'YouTube int.' entry. Now select Import Video-Hoster from the same screen and select the XML file that you modified. Now you should be fine. :)

Thanks, i've updated the YouTube XML File for the next Release (Added an option to enable/disable the related videos)

If you don't want to wait for the next release, you can use the attached XML File!

Regards
Surviver

Jaxel 11-22-2008 09:26 AM

I'm having problems adding this video...
http://www.youtube.com/watch?v=XoOzTPHbCcw

I get the The response of the video-server can't be read error... other YouTube videos work fine... just this one doesn't.

I have also added the API for the YouTube HIGH DEFINITION video...
http://www.8wayrun.com/video.php?do=...ls&videoid=109

Surviver 11-22-2008 11:22 AM

Quote:

Originally Posted by Jaxel (Post 1670545)
I'm having problems adding this video...
http://www.youtube.com/watch?v=XoOzTPHbCcw

I get the The response of the video-server can't be read error... other YouTube videos work fine... just this one doesn't.

I have also added the API for the YouTube HIGH DEFINITION video...
http://www.8wayrun.com/video.php?do=...ls&videoid=109

That video works for me ...

jiffylb1 11-22-2008 12:05 PM

is there a portal module for the video directory

Surviver 11-22-2008 04:29 PM

Quote:

Originally Posted by jiffylb1 (Post 1670596)
is there a portal module for the video directory

Only for vBCMS

momo2 11-22-2008 05:19 PM

installed very nice and easy and useful, i only have problem when i post one as test, i did see a error on the top how ever it gave me success and video is showing, also how can i change the 15 char to less, when posting it

Surviver 11-22-2008 05:24 PM

Quote:

Originally Posted by momo2 (Post 1670721)
installed very nice and easy and useful, i only have problem when i post one as test, i did see a error on the top how ever it gave me success and video is showing, also how can i change the 15 char to less, when posting it

What error do you get?

You can set the minimum required chars in the options :)

momo2 11-22-2008 05:38 PM

ok i will also there is another problem, how to add the user in seo panel ? to get rid of that messege

Surviver 11-22-2008 06:16 PM

Quote:

Originally Posted by momo2 (Post 1670726)
ok i will also there is another problem, how to add the user in seo panel ? to get rid of that messege

?? Sorry, i don't understand ...

KW802 11-22-2008 06:32 PM

Speaking of vBSEO...

In the ACP Options, when checking to see if the "vBSEO-Integration" box should be displayed or not, instead of checking just for the presence of VBSEO_ENABLED it may be better to also check to see if the variable is true or false. That way people who have vBSEO disabled will not get the error message.

So instead of checking for just...
Code:

if (defined('VBSEO_ENABLED')  ...
... check instead for:
Code:

if (defined('VBSEO_ENABLED') && VBSEO_ENABLED ...

raja811 11-22-2008 08:59 PM

please solve this

Database error in vBulletin 3.7.3:


Invalid SQL:
CREATE TABLE vb_video (
videoid int(10) unsigned NOT NULL auto_increment,
title varchar(255) NOT NULL,
description mediumtext NOT NULL,
videourl varchar(255) NOT NULL,
videocategoryid int(10) unsigned NOT NULL default '0',
dateline int(10) NOT NULL default '0',
userid int(10) unsigned NOT NULL default '0',
videoservice varchar(250) NOT NULL,
videoidservice varchar(250) NOT NULL,
views int(10) unsigned NOT NULL default '0',
PRIMARY KEY (videoid)
);

MySQL Error : Table 'vb_video' already exists
Error Number : 1050
Request Date : Saturday, November 22nd 2008 @ 03:54:54 PM
Error Date : Saturday, November 22nd 2008 @ 03:54:55 PM
Script : http://www.mysite.com/forum/admincp/...=productimport
Referrer : http://www.mysite.com/forum/admincp/...?do=productadd
IP Address : 79.98.223.235
Username : rjas
Classname : vB_Database
MySQL Version : 5.0.67-log

momo2 11-22-2008 11:42 PM

ok thanks will try that for seo

teamsupra 11-23-2008 12:57 AM

I added the VBSEO code to Custom Rewrite Rules but the only thing that is being rewritten is video.php to /videos/ help

momo2 11-23-2008 03:41 AM

ok i got the error when posting a link, like i said it will post it but this error comes, than post is made,

it comes so fast so its hard to read it but it seems it h
Warning: fopen([path]/videothumbnails/YouTube/TePgZWYWF0Q.jpg) [function.fopen]: failed to open stream: Permission denied in [path]/includes/videoserviceapi/class_youtube.php on line 103

Warning: fwrite(): supplied argument is not a valid stream resource in [path]/includes/videoserviceapi/class_youtube.php on line 104

Warning: fclose(): supplied argument is not a valid stream resource in [path]/includes/videoserviceapi/class_youtube.php on line 105
as permission to tumbnail

momo2 11-23-2008 03:59 AM

ok i got it fixed, so sorry for all replies all text are gone the new upload after fixing the 777 to all folders including inside, now it shows the tumbnail, excellent hack........

Surviver 11-23-2008 05:29 AM

Quote:

Originally Posted by raja811 (Post 1670825)
please solve this

Database error in vBulletin 3.7.3:


Invalid SQL:
CREATE TABLE vb_video (
videoid int(10) unsigned NOT NULL auto_increment,
title varchar(255) NOT NULL,
description mediumtext NOT NULL,
videourl varchar(255) NOT NULL,
videocategoryid int(10) unsigned NOT NULL default '0',
dateline int(10) NOT NULL default '0',
userid int(10) unsigned NOT NULL default '0',
videoservice varchar(250) NOT NULL,
videoidservice varchar(250) NOT NULL,
views int(10) unsigned NOT NULL default '0',
PRIMARY KEY (videoid)
);

MySQL Error : Table 'vb_video' already exists
Error Number : 1050
Request Date : Saturday, November 22nd 2008 @ 03:54:54 PM
Error Date : Saturday, November 22nd 2008 @ 03:54:55 PM
Script : http://www.mysite.com/forum/admincp/...=productimport
Referrer : http://www.mysite.com/forum/admincp/...?do=productadd
IP Address : 79.98.223.235
Username : rjas
Classname : vB_Database
MySQL Version : 5.0.67-log

Why should I solve this?

That's not a general problem of this hack ;)
I don't know, why the table already eyists in your database ;)

Quote:

Originally Posted by teamsupra (Post 1670932)
I added the VBSEO code to Custom Rewrite Rules but the only thing that is being rewritten is video.php to /videos/ help

Did you add the rules in the corect order?

Quote:

Originally Posted by momo2 (Post 1671020)
ok i got the error when posting a link, like i said it will post it but this error comes, than post is made,

it comes so fast so its hard to read it but it seems it h
Warning: fopen([path]/videothumbnails/YouTube/TePgZWYWF0Q.jpg) [function.fopen]: failed to open stream: Permission denied in [path]/includes/videoserviceapi/class_youtube.php on line 103

Warning: fwrite(): supplied argument is not a valid stream resource in [path]/includes/videoserviceapi/class_youtube.php on line 104

Warning: fclose(): supplied argument is not a valid stream resource in [path]/includes/videoserviceapi/class_youtube.php on line 105
as permission to tumbnail

Quote:

Originally Posted by momo2 (Post 1671031)
ok i got it fixed, so sorry for all replies all text are gone the new upload after fixing the 777 to all folders including inside, now it shows the tumbnail, excellent hack........

:)

abhimation 11-23-2008 11:16 AM

** INSTALLED ** and its running smooth. Few queries -

1) Could anyone add other hosts like jumpcut, vimeo etc?
2) On the Video Home - Can i change the text "Categories alltogether" to "Categories" only ?

Jaxel 11-23-2008 12:41 PM

I use TFSEO, not VBSEO... any compatibility with this?

And oh, if you wanna use my forum as a demo, I'm okay with that...

http://www.8wayrun.com/video.php?styleid=3

Surviver 11-23-2008 03:05 PM

Quote:

Originally Posted by abhimation (Post 1671222)
** INSTALLED ** and its running smooth. Few queries -

1) Could anyone add other hosts like jumpcut, vimeo etc?
2) On the Video Home - Can i change the text "Categories alltogether" to "Categories" only ?

1.) That's possbible, but not very easy ;)
2.) Yes, search the phrases for this peace of text :)

Quote:

Originally Posted by Jaxel (Post 1671263)
I use TFSEO, not VBSEO... any compatibility with this?

And oh, if you wanna use my forum as a demo, I'm okay with that...

http://www.8wayrun.com/video.php?styleid=3

Sorry, i don't know TFSEO ;)

freni32 11-23-2008 05:49 PM

Can someone help me, I put this on my homepage and it looks fine, however on sub forums it is putting a big space above the video....not sure why:

homepage is RadarDetectorLaser.Com

you will see my video module on the right side of page, which looks fine but then when you go to for example:

http://www.radardetectorlaser.com/va...ar-detector-8/

there is a huge gap above it, I did increase the size of the videos on that picture, but cant figure out how to remove the space above the video.

here is the code for that part of the page, do you see anything wrong with the code maybe?

<!-- Embed Video Code Start -->
<if condition="$catid == 8">
<object width="250" height="250"><param name="movie" value="http://www.youtube.com/v/2xInFL22Yig&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/2xInFL22Yig&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="250" height="250"></embed></object>
</else></if>
<br>
<if condition="$catid == 8">
<object width="250" height="250"><param name="movie" value="http://www.youtube.com/v/RQJTsAXaNBI&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/RQJTsAXaNBI&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="250" height="250"></embed></object>
</else></if>
<br>
<if condition="$catid == 8">
<object width="250" height="250"><param name="movie" value="http://www.youtube.com/v/FVE6724e85M&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/FVE6724e85M&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="250" height="250"></embed></object>
</else></if>
<!-- Embed Video Code End -->

Surviver 11-23-2008 06:17 PM

Quote:

Originally Posted by freni32 (Post 1671477)
Can someone help me, I put this on my homepage and it looks fine, however on sub forums it is putting a big space above the video....not sure why:

homepage is RadarDetectorLaser.Com

you will see my video module on the right side of page, which looks fine but then when you go to for example:

http://www.radardetectorlaser.com/va...ar-detector-8/

there is a huge gap above it, I did increase the size of the videos on that picture, but cant figure out how to remove the space above the video.

here is the code for that part of the page, do you see anything wrong with the code maybe?

<!-- Embed Video Code Start -->
<if condition="$catid == 8">
<object width="250" height="250"><param name="movie" value="http://www.youtube.com/v/2xInFL22Yig&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/2xInFL22Yig&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="250" height="250"></embed></object>
</else></if>
<br>
<if condition="$catid == 8">
<object width="250" height="250"><param name="movie" value="http://www.youtube.com/v/RQJTsAXaNBI&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/RQJTsAXaNBI&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="250" height="250"></embed></object>
</else></if>
<br>
<if condition="$catid == 8">
<object width="250" height="250"><param name="movie" value="http://www.youtube.com/v/FVE6724e85M&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/FVE6724e85M&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="250" height="250"></embed></object>
</else></if>
<!-- Embed Video Code End -->

Can't conform that - looks fine for me ...

freni32 11-23-2008 06:29 PM

right about it there is a huge gap of space until the module title is at, the homepage looks fine, it is the subpage categories

on homepage as well, look below the last video where the module stops...there is a big gap of space as well :{

Jaxel 11-24-2008 04:34 PM

Any chance for Playlists/Sub-Categories...

If you look at how I have one of my video categories...
http://www.8wayrun.com/video.php?do=...y&categoryid=9

Right now it has 60 vids, and later today it will have 90... I would like to be able to split those videos into sub-categories. So when someone clicks on the Kogarasumaru category, they will not only get the full list of 90 videos, but also get 3 sub-categories they can click on to further refine the listings... Would this be possible?

This and the Video Profiles for users would make this mod PERFECT for me.

Quote:

Originally Posted by Surviver (Post 1671354)
Sorry, i don't know TFSEO ;)

Fair enough... but could we get a vBA_CMPS version of the Forumhome mod?

KW802 11-24-2008 04:47 PM

Quote:

Originally Posted by Jaxel (Post 1672067)
Fair enough... but could we get a vBA_CMPS version of the Forumhome mod?

The one by Twilkey?

Surviver 11-24-2008 06:00 PM

Quote:

Originally Posted by Jaxel (Post 1672067)
Any chance for Playlists/Sub-Categories...

If you look at how I have one of my video categories...
http://www.8wayrun.com/video.php?do=...y&categoryid=9

Right now it has 60 vids, and later today it will have 90... I would like to be able to split those videos into sub-categories. So when someone clicks on the Kogarasumaru category, they will not only get the full list of 90 videos, but also get 3 sub-categories they can click on to further refine the listings... Would this be possible?

This and the Video Profiles for users would make this mod PERFECT for me.



Fair enough... but could we get a vBA_CMPS version of the Forumhome mod?

Subcategories will be maybe implented in futur versions ;)

Regards
Surviver

Jaxel 11-24-2008 10:26 PM

Hey... do you know the RSS feed doesnt work in IE?

http://www.8wayrun.com/video.php?do=rss

Works in Firefox, but not IE.

johnrizz 11-24-2008 11:43 PM

Surviver, How would you get liveleak . com too work on this?

Jaxel 11-25-2008 11:49 AM

Why do videos give the random "Response from Server Can Not Be Read" error?

http://www.youtube.com/watch?v=9AZjAUSRcAU
http://www.youtube.com/watch?v=Hv49e0aGE2g

Surviver 11-25-2008 12:49 PM

Quote:

Originally Posted by Jaxel (Post 1672285)
Hey... do you know the RSS feed doesnt work in IE?

http://www.8wayrun.com/video.php?do=rss

Works in Firefox, but not IE.

Thanks for the repot, I'll see waht i can do!

Quote:

Originally Posted by stone0075 (Post 1672348)
Surviver, How would you get liveleak . com too work on this?

You have to write a class for this hoster.

Quote:

Originally Posted by Jaxel (Post 1672646)
Why do videos give the random "Response from Server Can Not Be Read" error?

http://www.youtube.com/watch?v=9AZjAUSRcAU
http://www.youtube.com/watch?v=Hv49e0aGE2g

The 1st video works, for the second i gte the response (invisible for you) Video not found ;)


All times are GMT. The time now is 02:29 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.02498 seconds
  • Memory Usage 1,915KB
  • 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
  • (29)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (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