vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Member Archives (https://vborg.vbsupport.ru/forumdisplay.php?f=202)
-   -   Active topics ? how did you do it tech talk ? (https://vborg.vbsupport.ru/showthread.php?t=2658)

08-23-2000 01:12 PM

Okay i thought i'd start a new thread ... how did tech talk do the today's active topics code hack to include it on a non vb page..

i have added most of the includes that tech talk released on my test index page at

now all i am missing are

1. active topics includes
2. displaying total threads
3. displaying total posts
4. displaying total registered members
5. displaying most recent registered member

any help is appreciated :D


[Edited by eva2000 on 01-04-2001 at 12:43 PM]

08-23-2000 05:13 PM

[Edited by eva2000 on 01-04-2001 at 12:44 PM]

08-23-2000 07:01 PM

Ok ill try to help a little here. To show the newest registered member make a new file called "newestmember.inc.php" and place the code below into it.

See it in action here:
http://www.extremeforums.com/include...member.inc.php

Here is the code:

Code:

<?php
require("/full/path/to/admin/config.php");
$db=mysql_connect($servername,$dbusername,$dbpassword);
mysql_select_db($dbname);
$query = "select * from user order by userid desc limit 1";
$resultlatest = mysql_query($query,$db);
$latest_array = mysql_fetch_array($resultlatest);
echo "<FONT FACE=\"Verdana, Arial, Helvetica, sans-serif\" SIZE=\"2\"><b>Greetings to our newest member, <a href=\"http://www.extremeforums.com/forums/member.php?action=getinfo&userid=$latest_array[userid]\" target=_blank>$latest_array[username]</a> !</b></font>";
?>

------------------------------------------------------------

For the total number of members make a file called "totalmembers.inc.php" and place the following code into it:
Code:

<?php
require("/full/path/to/admin/config.php");
$db=mysql_connect($servername,$dbusername,$dbpassword);
mysql_select_db($dbname);
$query = "select * from user";
$resultlatest = mysql_query($query,$db);
$num = mysql_num_rows($resultlatest);
echo "<FONT FACE=\"Verdana, Arial, Helvetica, sans-serif\" SIZE=\"2\">There are currently <b>$num</b> registered members.</font>";
?>

See this one in action here:
http://www.extremeforums.com/include...embers.inc.php

------------------------------------------------------------

For the total posts make a new file called "totalposts.inc.php" and include the following:
Code:

<?php
require("/full/path/to/admin/config.php");
$db=mysql_connect($servername,$dbusername,$dbpassword);
mysql_select_db($dbname);
$query = "select * from post";
$resultlatest = mysql_query($query,$db);
$num = mysql_num_rows($resultlatest);
echo "<FONT FACE=\"Verdana, Arial, Helvetica, sans-serif\" SIZE=\"2\">There are currently <b>$num</b> posts on the forums.</font>";
?>

See an example here:
http://www.extremeforums.com/include/totalposts.inc.php

------------------------------------------------------------

For the total threads make a file called "totalthreads.inc.php" and include the following:
Code:

<?php
require("/full/path/to/admin/config.php");
$db=mysql_connect($servername,$dbusername,$dbpassword);
mysql_select_db($dbname);
$query = "select * from thread";
$resultlatest = mysql_query($query,$db);
$num = mysql_num_rows($resultlatest);
echo "<FONT FACE=\"Verdana, Arial, Helvetica, sans-serif\" SIZE=\"2\">There are currently <b>$num</b> threads on the forums.</font>";
?>

Here is the example:
http://www.extremeforums.com/include...hreads.inc.php

------------------------------------------------------------

Hope this helps ;)

If you have any questions just let me know

~Chris

08-23-2000 07:04 PM

Oh and BTW....your active topics looks nice ;) Mine will show you any threads that were posted to today. If you want it here is the code:

Code:

<?php
// Set this to the max number of threads you want to display
$maxthreads = 100;

require("/full/path/to/admin/config.php");
$db=mysql_connect($servername,$dbusername,$dbpassword);
mysql_select_db($dbname);
$query = "SELECT * FROM thread WHERE to_days(now())=to_days(from_unixtime(lastpost)) AND forumid <> 34 AND forumid <> 33 ORDER BY dateline DESC LIMIT $maxthreads";
$resultlatest = mysql_query($query,$db);
while ($latest_array = mysql_fetch_array($resultlatest)) {
echo "<img src=\"images/smalldoc.gif\" width=\"12\" height=\"12\" alt=\">\" border=\"0\" align=\"absmiddle\"><FONT SIZE=\"2\" FACE=\"Verdana, Arial, Helvetica, sans-serif\">
<A HREF=\"http://www.extremeforums.com/forums/showthread.php?threadid=$latest_array[threadid]\">$latest_array[title]</A></FONT><BR>";
}
 
?>

~Chris

08-23-2000 07:47 PM

thanks techtalk it works perfectly and can be seen at http://www.animeboards.net :D

the only thing i had to do was add the chdir before require command in each php file you had above
Code:

<?php
chdir("/home/usr1/www.animeboards.net/htdocs/forums");
require("/home/usr1/www.animeboards.net/htdocs/forums/admin/config.php");


08-23-2000 07:49 PM

Glad you got it working ;) Strange about the change dir thingy...I never had to do that before :confused:

~Chris

08-23-2000 08:33 PM

*** dances around *** thanks again tech talk... just amazing what you can do with vbulletin :D

08-23-2000 08:36 PM

whoops... forgot one slight addition... how do you display the Active users ?

just the top part which says

Currently there are x members and x guests on the forums.

08-23-2000 08:40 PM

nice hack, but i want to exclude the private forums (TechTalk's active hack).

is this possible?

08-23-2000 09:03 PM

that's what i did i excluded forums by not specifying them

i.e. for me

Code:

<?
require("/home/usr1/www.animeboards.net/htdocs/forums/admin/config.php");

        $num_active = 10;
        $num_chars  = 90;

        $db=mysql_connect($servername,$dbusername,$dbpassword);
        mysql_select_db($dbname);

        $querylatest="select * from thread where forumid='1' or forumid='2' or forumid='3' or forumid='4' or forumid='5' or forumid='6' or forumid='7' or forumid='8' or forumid='9' or forumid='10' or forumid='11' or forumid='12' or forumid='13' or forumid='14' or forumid='15' or forumid='16' or forumid='17' or forumid='18' or forumid='19' or forumid='20' or forumid='22' or forumid='23' or forumid='25' or forumid='26' or forumid='27' or forumid='28' or forumid='29' or forumid='30' or forumid='31' or forumid='32' or forumid='34' or forumid='35' or forumid='36' or forumid='37' or forumid='38' order by lastpost desc limit $num_active";

        $resultlatest = mysql_query($querylatest,$db);

        print("<center><table width=\"100%%\" cellspacing=\"0\" cellpadding=\"2\">");

        while ($latest_array = mysql_fetch_array($resultlatest)) {
       
        // Get Forum Infomation
        $query_forum = "select * from forum where forumid='$latest_array[forumid]'";
        $result_forum = mysql_query($query_forum,$db);
        $forum_info_array = mysql_fetch_array($result_forum);
       
        printf("<tr><td colspan=\"2\" bgcolor=\"#87A4C2\"><b><font color=\"#000000\" size=\"1\" face=\"Verdana, Arial, Helvetica, sans-serif\">%s: %s</font></b></td></tr>",$forum_info_array["title"],$latest_array["title"]);

        // split the date up a bit
        $datestr1 = substr($latest_array["dateline"],0,10);
        $datetime = substr($latest_array["dateline"],11,8);       
        printf ("<tr valign=\"top\"><td width=\"15%%\" bgcolor=\"#B9B9B9\"><font face=\"Verdana, Arial, Helvetica, sans-serif\" size=\"1\"><b>%s</b><br>Updated: %s<br>Replies: %s</font></td>", $latest_array["postusername"], $datetime, $latest_array["replycount"]);

        $querythread="select * from post where threadid='$latest_array[threadid]' order by dateline asc limit 1";

        $result_thread_text= mysql_query($querythread,$db);

        $result_thread_array = mysql_fetch_array($result_thread_text);
        printf ("<td width=\"85%%\" bgcolor=\"#cccccc\"><font face=\"Verdana, Arial, Helvetica, sans-serif\" size=\"1\"><img src=\"/forums/images/icons/icon%s.gif\">?Last Post By: %s<hr>%s...<br><a href=\"/forums/showthread.php?threadid=%s\">Click here for more</font></td></tr>",$result_thread_array["iconid"],$latest_array["lastposter"],substr(strip_tags($result_thread_array["pagetext"]),0,$num_chars),$latest_array["threadid"]);
        printf ("<tr><td colspan=\"2\" width=\"100%%\">?</td></tr>");
        }

        printf ("</table></center>");
?>

the part where is shows

forumid='1' or forumid='2' etc... it tells which forums to show... so leaving it out, hides the private forums :)

08-24-2000 05:15 AM

thanks, works perfect!

08-24-2000 08:56 AM

well you have to thank shri, tech talk and jimf :D

08-24-2000 09:03 AM

oh yeah 1 last thing is i need is the code to make the ctive users show up on a non vb page

something like

Currently there are x members and x guests on the forums.

08-29-2000 11:14 PM

Hi eva2000,

I tried your .txt examples but they were redirecting to your main forums page. I need Code help on the following stuff please?

1. Show Most Active Posters (number of active posters as variable)
example: Most Active Posters
POster 1 (number of posts)
Poster 2 (number of posts)
etc.

2. Show Last ($UNANSWERED TOPICS)

3. Show Forum Categories and Forums in Directory Tree Form
example:
Category 1
Forum 1 (number of posts)
Forum 2 (number of posts)
Forum 3 (number of posts)
Category 2
Forum 4 (number of posts)

Thanks and you guys rock!!!

08-30-2000 12:55 AM

okay here it is thanks to techtalk for these :D

1. http://animeboards.net/topposters.txt
2. http://animeboards.net/deadtopics.txt
3. don't know about that one but you could add the forum display one that techtalk did http://animeboards.net/forumlist.txt several times and select which forums you want each php include to display

in the above example

Code:

AND forumid != 21 AND forumid != 22 etc
displays those forums...

you could do 2 includes for 2 categories and specify only the forums within that category

08-30-2000 03:54 AM

For the active Forums hack above you could change the SQL statement from
Code:

$querylatest="select * from thread where forumid='1' or
forumid='2' or forumid='3' or forumid='4' or forumid='5' or
forumid='6' or forumid='7' or forumid='8' or forumid='9' or
forumid='10' or forumid='11' or forumid='12' or
forumid='13' or forumid='14' or forumid='15' or
forumid='16' or forumid='17' or forumid='18' or
forumid='19' or forumid='20' or forumid='22' or
forumid='23' or forumid='25' or forumid='26' or
forumid='27' or forumid='28' or forumid='29' or
forumid='30' or forumid='31' or forumid='32' or
forumid='34' or forumid='35' or forumid='36' or forumid='37' or forumid='38'
order by lastpost desc limit
$num_active";

to
Code:

$querylatest="select * from thread where forumid in
('1','2','3','4','5','6','7','8','9','10','11','12','13','14'
,'15','16','17','18','19','20','22','23','25','26','27','28'
,'29','30','31',32','34','35','36','37','38') order by
lastpost desc limit $num_active";

The second is shorter but both require you to change the code every time you add a new public forum. Now since you mark a forum as private or not then you can also use "where private='1'" in your SQL statement which shortens the whole SQL statement to:
Code:

$querylatest="select * from thread where select private != '1' from forum and thread.forumid=forum.forumid
order by lastpost desc limit $num_active";

Since I don't know that the forum table is called I just called it forum for simplicities sake.

Now I just have to learn PHP so I can understand what the rest of it does. :)


[Edited by wluke on 08-30-2000 at 01:04 AM]

08-31-2000 02:21 PM

Hi everyone.
This is my first post ever, and I'm very new to PHP and MySQL, though I'm good enough to be dangerous. That's why I need your help.

Let's say I have a forum in which only I post news items for my site. No postings by public allowed, though I don't know if that will make a difference to the hack.

I see the code you guys have been slinging around here, but cannot make enough progress in hacking it.

I want to take the very last item that's posted in my "private" forum for site news, and pull it into my homepage, with the headline and post time above it.

Possible? I know so. How, though?

Please help.

09-08-2000 11:36 AM

Quote:

Originally posted by wluke
to
Code:

$querylatest="select * from thread where forumid in
('1','2','3','4','5','6','7','8','9','10','11','12','13','14'
,'15','16','17','18','19','20','22','23','25','26','27','28'
,'29','30','31',32','34','35','36','37','38') order by
lastpost desc limit $num_active";

The second is shorter but both require you to change the code every time you add a new public forum. Now since you mark a forum as private or not then you can also use "where private='1'" in your SQL statement which shortens the whole SQL statement to:
Code:

$querylatest="select * from thread where select private != '1' from forum and thread.forumid=forum.forumid
order by lastpost desc limit $num_active";


note to those that asked about my frontpage at http://animeboards.net - i have yet to change the code to the above posted by wluke

so does the below

Code:

$querylatest="select * from thread where select private != '1' from forum and thread.forumid=forum.forumid
order by lastpost desc limit $num_active";

show all forums and hide all private forums (more than 1 private forum) ?

09-08-2000 12:11 PM

I need the active topics .txt for the 12 last active topics you have down the middle of your page Eva2000

Please. Thanks.

09-08-2000 01:39 PM

somehow all those links i did above are valid ? strange oh well

here's the last 12 active threads in the middle column
Code:

<?

        $num_active = 12;
        $num_chars  = 95;

        $db=mysql_connect($servername,$dbusername,$dbpassword);
        mysql_select_db($dbname);

        $querylatest="select * from thread where forumid='1' or forumid='2' or forumid='3' or forumid='4' or forumid='5' or forumid='6' or forumid='7' or forumid='8' or forumid='9' or forumid='10' or forumid='11' or forumid='12' or forumid='13' or forumid='14' or forumid='15' or forumid='16' or forumid='17' or forumid='18' or forumid='19' or forumid='20' or forumid='22' or forumid='23' or forumid='25' or forumid='26' or forumid='27' or forumid='28' or forumid='32' or forumid='34' or forumid='35' or forumid='36' or forumid='37' or forumid='38' order by lastpost desc limit $num_active";

        $resultlatest = mysql_query($querylatest,$db);

        print("<center><table width=\"100%%\" cellspacing=\"0\" cellpadding=\"2\">");

        while ($latest_array = mysql_fetch_array($resultlatest)) {
       
        // Get Forum Infomation
        $query_forum = "select * from forum where forumid='$latest_array[forumid]'";
        $result_forum = mysql_query($query_forum,$db);
        $forum_info_array = mysql_fetch_array($result_forum);
       
        printf("<tr><td colspan=\"2\" bgcolor=\"#87A4C2\"><b><font color=\"#000000\" size=\"1\" face=\"Verdana, Arial, Helvetica, sans-serif\">%s: %s</font></b></td></tr>",$forum_info_array["title"],$latest_array["title"]);

        // split the date up a bit
        $datestr1 = substr($latest_array["dateline"],0,10);
        $datetime = substr($latest_array["dateline"],11,8);       
        printf ("<tr valign=\"top\"><td width=\"15%%\" bgcolor=\"#B9B9B9\"><font face=\"Verdana, Arial, Helvetica, sans-serif\" size=\"1\"><b>%s</b><br>Updated: %s<br>Replies: %s</font></td>", $latest_array["postusername"], $datetime, $latest_array["replycount"]);

        $querythread="select * from post where threadid='$latest_array[threadid]' order by dateline asc limit 1";

        $result_thread_text= mysql_query($querythread,$db);

        $result_thread_array = mysql_fetch_array($result_thread_text);
        printf ("<td width=\"85%%\" bgcolor=\"#cccccc\"><font face=\"Verdana, Arial, Helvetica, sans-serif\" size=\"1\"><img src=\"/forums/images/icons/icon%s.gif\">?Last Post By: %s<hr>%s...<br><a href=\"/forums/showthread.php?threadid=%s\">Click here for more</font></td></tr>",$result_thread_array["iconid"],$latest_array["lastposter"],substr(strip_tags($result_thread_array["pagetext"]),0,$num_chars),$latest_array["threadid"]);
        printf ("<tr><td colspan=\"2\" width=\"100%%\">?</td></tr>");
        }

        printf ("</table></center>");
?>

i haven't tried replacing it with wluke's suggestion for the $querylatest= yet

Code:

$querylatest="select * from thread where select private != '1' from forum and thread.forumid=forum.forumid
order by lastpost desc limit $num_active";


09-08-2000 02:16 PM

I just want to add that I have not tested it yet and it is based entirely on my knowledge of SQL because I don't have any PHP knowledge yet but I am learning because I have a few hacks of my own in mind including integration with an PHP driven IRC chat client.

I will be willing to work with you though on making queries more efficient if you want.

09-08-2000 02:24 PM

I tried it and it did not work. I might have done it wrong though.

These additions seem to slow down MySQL a good amount. DO you find that to be the case?

http://www.paintballcity.com/index.php

[Edited by VirtueTech on 09-08-2000 at 11:27 AM]

09-08-2000 02:28 PM

Ok let me work on it some more and actually test it because there has to be a better way than listing every forum you want to show, which would require changing the hack if you expand.

09-08-2000 02:32 PM

Quote:

Originally posted by VirtueTech
I tried it and it did not work. I might have done it wrong though.

These additions seem to slow down MySQL a good amount. DO you find that to be the case?

http://www.paintballcity.com/index.php

[Edited by VirtueTech on 09-08-2000 at 11:27 AM]

do you mean wluke's alterations slow it down or just the last 12 active hacks as is, slows down mysql ?

i do notice my front page slows down with the hacks added to the front page...

09-08-2000 02:38 PM

Just all the add ons in general...that kind of sucks. Cause they look cool

Maybe there is a way to lower the calls to mysql

09-08-2000 02:43 PM

yeah it does look cool... i have been thinking of changing my frontpage again and maybe remove some of those hacks...

09-08-2000 03:16 PM

I think the slowness is related to MySQL.

If it supported stored procedures than most of these hacks could be run as native SQL code and that would decrease response time plus make upgrades easier.

09-08-2000 04:04 PM

Eva-

How did you tie all these pieces together to get to what you have on your front page? Did you put each section of code inside it's own .php file and include them into a frame set?

Thanks,
-Chris

09-08-2000 04:38 PM

yeah i put each hack into a php file and used a php include command to add them to the index page

09-08-2000 05:13 PM

Can someone help me create this hack and modify so that will list the top 25 posters that have visited within the last (XX) days? I have some very active posters that haven't visited in months, and I would like to have them not show up in this.

09-14-2000 03:45 AM

anybody knows how to make top posters in specific forum?

09-29-2000 05:15 PM

Quote:

Originally posted by eva2000
yeah i put each hack into a php file and used a php include command to add them to the index page
I want to include these things on a portal page so that people visiting my site can see what the hot topics are going on at the moment.

Canb I include these hacks (and by the way, I need them :)) into an html page or do they have to be on a php page? if they have to be in a php page.

Any help would be great.

09-29-2000 05:20 PM

Yes they need to be in a PHP page, if your server doesn't parse .html for PHP code. Just copy any of the code snippets here that you need, and save them as something.php. Then your name your portal page index.php and inside there just use the include command to call something.php. It should look something like this:
Code:

<html>
<?php
    include("something.php");
?>
</html>

Of course with all of your other html code for your main page in there as well.

-Chris

09-29-2000 06:58 PM

Quote:

Originally posted by Chris Schreiber
Yes they need to be in a PHP page, if your server doesn't parse .html for PHP code. Just copy any of the code snippets here that you need, and save them as something.php. Then your name your portal page index.php and inside there just use the include command to call something.php. It should look something like this:
Code:

<html>
<?php
    include("something.php");
?>
</html>

Of course with all of your other html code for your main page in there as well.

-Chris

Now I'm confused (I'm new at this) When people type in my url they will not get the .php index file, they get my .html index file. This is where I want to include this stuff. If there is a way that when people go to my url they will get the index.php file that would be great.

Another point where I'm lost is: I don't have a template in my list (from the admin control panel) for Index.php Should I be using the Forumhome.php file for this? Also, I copied the code for the topposts list that I want (one that I see on Eva2000's site and on Paintball.com) and created a template called Toppost. I then tried to insert the include command you gave me in the Forumhome file, but nothing showed up. I changed the "something.php" to toppost.php of course, but nothing, not even a bit of code showing through.

I really like the paintball home page, as it has everything I want to include in mine. But......

10-03-2000 05:51 PM

Thanks for your help.

I was thinking in totally the wrong terms. I started looking around my server at the php files and realized what I have to do. I was thinking I had to do this through the template files that are in the admin section. My bad. All straight now. :)

10-03-2000 06:18 PM

Quote:

Originally posted by SoccerGazette.com
Thanks for your help.

I was thinking in totally the wrong terms. I started looking around my server at the php files and realized what I have to do. I was thinking I had to do this through the template files that are in the admin section. My bad. All straight now. :)

sorry i missed the posts in here... glad to see it's working.

10-07-2000 09:31 PM

Any way to display members currently on the boards?

10-12-2000 08:54 PM

Hi! Can me anybody pleas send the "Active topics" File? Thank you!
Tho

10-13-2000 03:28 AM

Quote:

Originally posted by eva2000
that's what i did i excluded forums by not specifying them

i.e. for me

Code:

<?
require("/home/usr1/www.animeboards.net/htdocs/forums/admin/config.php");

        $num_active = 10;
        $num_chars  = 90;

        $db=mysql_connect($servername,$dbusername,$dbpassword);
        mysql_select_db($dbname);

        $querylatest="select * from thread where forumid='1' or forumid='2' or forumid='3' or forumid='4' or forumid='5' or forumid='6' or forumid='7' or forumid='8' or forumid='9' or forumid='10' or forumid='11' or forumid='12' or forumid='13' or forumid='14' or forumid='15' or forumid='16' or forumid='17' or forumid='18' or forumid='19' or forumid='20' or forumid='22' or forumid='23' or forumid='25' or forumid='26' or forumid='27' or forumid='28' or forumid='29' or forumid='30' or forumid='31' or forumid='32' or forumid='34' or forumid='35' or forumid='36' or forumid='37' or forumid='38' order by lastpost desc limit $num_active";

        $resultlatest = mysql_query($querylatest,$db);

        print("<center><table width=\"100%%\" cellspacing=\"0\" cellpadding=\"2\">");

        while ($latest_array = mysql_fetch_array($resultlatest)) {
       
        // Get Forum Infomation
        $query_forum = "select * from forum where forumid='$latest_array[forumid]'";
        $result_forum = mysql_query($query_forum,$db);
        $forum_info_array = mysql_fetch_array($result_forum);
       
        printf("<tr><td colspan=\"2\" bgcolor=\"#87A4C2\"><b><font color=\"#000000\" size=\"1\" face=\"Verdana, Arial, Helvetica, sans-serif\">%s: %s</font></b></td></tr>",$forum_info_array["title"],$latest_array["title"]);

        // split the date up a bit
        $datestr1 = substr($latest_array["dateline"],0,10);
        $datetime = substr($latest_array["dateline"],11,8);       
        printf ("<tr valign=\"top\"><td width=\"15%%\" bgcolor=\"#B9B9B9\"><font face=\"Verdana, Arial, Helvetica, sans-serif\" size=\"1\"><b>%s</b><br>Updated: %s<br>Replies: %s</font></td>", $latest_array["postusername"], $datetime, $latest_array["replycount"]);

        $querythread="select * from post where threadid='$latest_array[threadid]' order by dateline asc limit 1";

        $result_thread_text= mysql_query($querythread,$db);

        $result_thread_array = mysql_fetch_array($result_thread_text);
        printf ("<td width=\"85%%\" bgcolor=\"#cccccc\"><font face=\"Verdana, Arial, Helvetica, sans-serif\" size=\"1\"><img src=\"/forums/images/icons/icon%s.gif\">?Last Post By: %s<hr>%s...<br><a href=\"/forums/showthread.php?threadid=%s\">Click here for more</font></td></tr>",$result_thread_array["iconid"],$latest_array["lastposter"],substr(strip_tags($result_thread_array["pagetext"]),0,$num_chars),$latest_array["threadid"]);
        printf ("<tr><td colspan=\"2\" width=\"100%%\">?</td></tr>");
        }

        printf ("</table></center>");
?>

the part where is shows

forumid='1' or forumid='2' etc... it tells which forums to show... so leaving it out, hides the private forums :)




If I run the above script I get this error


Warning: 0 is not a MySQL result index in /www/tuffsports/forum/test1.php3 on line 15

I keep will keep playing around but any guidence is appreciated.

10-13-2000 03:32 AM

Ok - dumb me

didnt have the require command in for some reason


All times are GMT. The time now is 04:41 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.03384 seconds
  • Memory Usage 1,900KB
  • 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
  • (19)bbcode_code_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)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