vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   vBChat v2.3 (https://vborg.vbsupport.ru/showthread.php?t=71049)

RsX 11-11-2004 05:27 PM

please can someone tell me how to change the background in teh chat and decide what smileys to show?

And also why does it always say no users online in home page but there are users online? Oo

PHP Code:

// ### LOGGED IN USERS ################################################# 
$activeusers ''
if (
$vboptions['displayloggedin']) 

    
$datecut TIMENOW $vboptions['cookietimeout']; 
    
$numbervisible 0
    
$numberregistered 0
    
$numberguest 0

    
$forumusers $DB_site->query(
        SELECT 
            user.username, (user.options & 
$_USEROPTIONS[invisible]) AS invisible, user.usergroupid, 
            session.userid, session.inforum, session.lastactivity, 
            IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid 
        FROM " 
TABLE_PREFIX "session AS session 
        LEFT JOIN " 
TABLE_PREFIX "user AS user ON(user.userid = session.userid) 
        WHERE session.lastactivity > 
$datecut 
        " 
iif($vboptions['displayloggedin'] == 1"ORDER BY username ASC") . 
    "
); 

    if (
$bbuserinfo['userid']) 
    { 
        
// fakes the user being online for an initial page view of index.php 
        
$bbuserinfo['joingroupid'] = iif($bbuserinfo['displaygroupid'], $bbuserinfo['displaygroupid'], $bbuserinfo['usergroupid']); 
        
$userinfos = array 
        ( 
            
$bbuserinfo['userid'] => array 
            ( 
                
'userid' => $bbuserinfo['userid'], 
                
'username' => $bbuserinfo['username'], 
                
'invisible' => $bbuserinfo['invisible'], 
                
'inforum' => 0
                
'lastactivity' => TIMENOW
                
'usergroupid' => $bbuserinfo['usergroupid'], 
                
'displaygroupid' => $bbuserinfo['displaygroupid'], 
            ) 
        ); 
    } 
    else 
    { 
        
$userinfos = array(); 
    } 
    
$inforum = array(); 

// Get the users in vBChat 
    
$vbchat_users = array(); 

    while (
$loggedin $DB_site->fetch_array($forumusers)) 
    { 
        
$userid $loggedin['userid']; 
        if (!
$userid
        {    
// Guest 
            
$numberguest++; 
            
$inforum["$loggedin[inforum]"]++; 
        } 
        else if (empty(
$userinfos["$userid"]) OR ($userinfos["$userid"]['lastactivity'] < $loggedin['lastactivity'])) 
        { 
            
$userinfos["$userid"] = $loggedin
        } 

        if(
preg_match("/vBChat.php/",$loggedin['location']) && $loggedin['userid']){ 
        
$vbchat_users[$loggedin['userid']] = $loggedin
        } 

    } 

    
// Configure Peeps In vBChat 
    
$invBChat ""

    if(
is_array($vbchat_users)){ 
        foreach(
$vbchat_users as $invbc){ 
            if(
$invBChat == ""){ 
            
$extra ""
            } else { 
            
$extra ", "
            } 

        
// Get Username Style 
        
$invbc['musername'] = fetch_musername($invbc); 

        
$invBChat .= "{$extra}<a href='member.php?{$session['sessionurl']}&u={$invbc['userid']}'>{$invbc['musername']}</a>"
        } 
    } 

    if(
$invBChat == ""){ 
    
$invBChat "<i>No one is currently inside vBChat</i>"
    } 

    foreach(
$userinfos AS $userid => $loggedin
    { 
        
$numberregistered++; 
        if (
$userid != $bbuserinfo['userid']) 
        { 
            
$inforum["$loggedin[inforum]"]++; 
        } 
        
$loggedin['musername'] = fetch_musername($loggedin); 

        if (
fetch_online_status($loggedin)) 
        { 
            
$numbervisible++; 
            eval(
'$activeusers .= ", ' fetch_template('forumhome_loggedinuser') . '";'); 
        } 
    } 

    
// memory saving 
    
unset($userinfos$loggedin); 

    
$activeusers substr($activeusers 2); // get rid of initial comma 

    
$DB_site->free_result($loggedins); 

    
$totalonline $numberregistered $numberguest
    
$numberinvisible $numberregistered $numbervisible

    
// ### MAX LOGGEDIN USERS ################################ 


nnjj.net 11-11-2004 07:03 PM

how I can change the timing of the refresh and the background of the refresh?

nnjj.net 11-11-2004 07:18 PM

also if I have catagories of smiles, how I can spacify one category only of that to be appear on the chat?

manguish 11-11-2004 07:26 PM

Quote:

Originally Posted by RsX
please can someone tell me how to change the background in teh chat and decide what smileys to show?

And also why does it always say no users online in home page but there are users online?

PHP Code:

// ### LOGGED IN USERS ################################################# 
$activeusers ''
if (
$vboptions['displayloggedin']) 

    
$datecut TIMENOW $vboptions['cookietimeout']; 
    
$numbervisible 0
    
$numberregistered 0
    
$numberguest 0

    
$forumusers $DB_site->query(
        SELECT 
            user.username, (user.options & 
$_USEROPTIONS[invisible]) AS invisible, user.usergroupid, 
            session.userid, session.inforum, session.lastactivity, 
            IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid 
        FROM " 
TABLE_PREFIX "session AS session 
        LEFT JOIN " 
TABLE_PREFIX "user AS user ON(user.userid = session.userid) 
        WHERE session.lastactivity > 
$datecut 
        " 
iif($vboptions['displayloggedin'] == 1"ORDER BY username ASC") . 
    "
); 

    if (
$bbuserinfo['userid']) 
    { 
        
// fakes the user being online for an initial page view of index.php 
        
$bbuserinfo['joingroupid'] = iif($bbuserinfo['displaygroupid'], $bbuserinfo['displaygroupid'], $bbuserinfo['usergroupid']); 
        
$userinfos = array 
        ( 
            
$bbuserinfo['userid'] => array 
            ( 
                
'userid' => $bbuserinfo['userid'], 
                
'username' => $bbuserinfo['username'], 
                
'invisible' => $bbuserinfo['invisible'], 
                
'inforum' => 0
                
'lastactivity' => TIMENOW
                
'usergroupid' => $bbuserinfo['usergroupid'], 
                
'displaygroupid' => $bbuserinfo['displaygroupid'], 
            ) 
        ); 
    } 
    else 
    { 
        
$userinfos = array(); 
    } 
    
$inforum = array(); 

// Get the users in vBChat 
    
$vbchat_users = array(); 

    while (
$loggedin $DB_site->fetch_array($forumusers)) 
    { 
        
$userid $loggedin['userid']; 
        if (!
$userid
        {    
// Guest 
            
$numberguest++; 
            
$inforum["$loggedin[inforum]"]++; 
        } 
        else if (empty(
$userinfos["$userid"]) OR ($userinfos["$userid"]['lastactivity'] < $loggedin['lastactivity'])) 
        { 
            
$userinfos["$userid"] = $loggedin
        } 

        if(
preg_match("/vBChat.php/",$loggedin['location']) && $loggedin['userid']){ 
        
$vbchat_users[$loggedin['userid']] = $loggedin
        } 

    } 

    
// Configure Peeps In vBChat 
    
$invBChat ""

    if(
is_array($vbchat_users)){ 
        foreach(
$vbchat_users as $invbc){ 
            if(
$invBChat == ""){ 
            
$extra ""
            } else { 
            
$extra ", "
            } 

        
// Get Username Style 
        
$invbc['musername'] = fetch_musername($invbc); 

        
$invBChat .= "{$extra}<a href='member.php?{$session['sessionurl']}&u={$invbc['userid']}'>{$invbc['musername']}</a>"
        } 
    } 

    if(
$invBChat == ""){ 
    
$invBChat "<i>No one is currently inside vBChat</i>"
    } 

    foreach(
$userinfos AS $userid => $loggedin
    { 
        
$numberregistered++; 
        if (
$userid != $bbuserinfo['userid']) 
        { 
            
$inforum["$loggedin[inforum]"]++; 
        } 
        
$loggedin['musername'] = fetch_musername($loggedin); 

        if (
fetch_online_status($loggedin)) 
        { 
            
$numbervisible++; 
            eval(
'$activeusers .= ", ' fetch_template('forumhome_loggedinuser') . '";'); 
        } 
    } 

    
// memory saving 
    
unset($userinfos$loggedin); 

    
$activeusers substr($activeusers 2); // get rid of initial comma 

    
$DB_site->free_result($loggedins); 

    
$totalonline $numberregistered $numberguest
    
$numberinvisible $numberregistered $numbervisible

    
// ### MAX LOGGEDIN USERS ################################ 


See my post here :

https://vborg.vbsupport.ru/showpost....&postcount=230

vorphalack 11-11-2004 07:57 PM

I got the "who's online in chat" to work!

I tried the code posted by manguish, it didn't work either.

Then I looked in the file for the "fresh install" of the chat - THAT code worked!

I'm using 3.0.3, by the way.

cogimo 11-11-2004 08:02 PM

Hi

When I go to edit the index.php file in the root directory, my file looks different. Everything is bold and green is different.

while ($loggedin = $DB_site->fetch_array($forumusers))
{
$userid = $loggedin['userid'];
if (!$userid)
{ // Guest
$numberguest++;
$inforum["$loggedin[inforum]"]++;
}
else if (empty($userinfos["$userid"]['lastactivity']) OR ($userinfos["$userid"]['lastactivity'] < $loggedin['lastactivity']))
{
$userinfos["$userid"] = $loggedin;
$numberregistered++;
if ($userid != $bbuserinfo['userid'])
{
$inforum["$loggedin[inforum]"]++;
}
$loggedin['musername'] = fetch_musername($loggedin);

if (fetch_online_status($loggedin))
{
$numbervisible++;
eval('$activeusers .= ", ' . fetch_template('forumhome_loggedinuser') . '";');
}
}
}

// memory saving
unset($userinfos, $loggedin);

$activeusers = substr($activeusers , 2); // get rid of initial comma

$DB_site->free_result($loggedins);

$totalonline = $numberregistered + $numberguest;
$numberinvisible = $numberregistered - $numbervisible;

manguish 11-11-2004 08:06 PM

If you aren't using 3.0.3 your code WILL be different and you'll have to manually (ie:yourself) go through the code and replace as necessary.

I had to completely change the who's online bit (for 3.0.0) to get it to work.

Zero Tolerance 11-11-2004 08:14 PM

Okay back at home, updated the download

Those of you having problems with accessing the admin cp, please re-download the zip and re-edit admincp/index.php

Those of you having problems with showing the users online, i updated the edits for index.php so they ask you to find the EXACT code that is in a fresh vb3.0.3 download, if you have modified that area from another hack then im afraid you will have to look at what your told to replace it with and see what's different and attempt to manually change it (Hint: there are two new parts added into the replace)

Sorry for any inconveniance,

- Zero Tolerance

owen100 11-11-2004 09:18 PM

Zero Tolerance - thanks for your last post; that's fixed the blank page problem with the admincp/index.php file.

Other than that easy to install and will be MUCH appreciated. One thing left though previously mentioned that I can't find a fix for..

Quote:

Originally Posted by Deimos
Yea it's odd, it randomly shows one smiley, but the rest are red x's
Hrm, the smileys are all working on posts etc, but not showing up in the chat.
Is it because I have two groups of smilies? Standard set and a secondary set perhaps?
I have that same problem, I mainly get valid smilies but also random image not found red Xs instead of smilies.

SVTOA 11-11-2004 09:47 PM

Quote:

Originally Posted by vorphalack
I got the "who's online in chat" to work!

I tried the code posted by manguish, it didn't work either.

Then I looked in the file for the "fresh install" of the chat - THAT code worked!

I'm using 3.0.3, by the way.

I had to do as ZT suggested and manually edit my index.php to work correctly, and mine looks different than mangusih's yet I also have 3.0.0

X-Fan 11-11-2004 11:03 PM

Very, very, very cool addition! I was using phpMyChat but I've switched to vBChat now and will be sticking with it for the long haul! Thanks ZT!

djjeffa 11-11-2004 11:12 PM

i reistalled and still no luck with the who is in chate and still cant fix the smilies? also can i make it so the time goes next to the messages like the first version?

Harley D 11-12-2004 02:40 AM

Had this working perfectly with the first version, now that I updated my VBCHAT page is blank? ADMINCP is working fine. VBv 3.0.3

Harley D 11-12-2004 02:55 AM

DOH, I forgot, the install only changes one on the skins templates, the rest have to be manually edited.
My bad

bendigo-tech 11-12-2004 03:22 AM

Upgrade went smoothly. Took 5 minutes to upgrade... very sweet!

Thanks.

Jaxx 11-12-2004 05:13 AM

Thanks for the update.

Only problem I have is some the smilies are showing up as just red x's.

RsX 11-12-2004 10:03 AM

yey works ^^ only 1 problem..............

How can i chang inframe background without killing the style?

How can i select how many/Witch smilies can be viewed?

SVTOA 11-12-2004 11:43 AM

If you have trouble with your forumhome "Who's online" or find that no members show up as chatting on the forumhome even when they are in the chat, this may work for you:

Make a backup of your forums root index.php file before you try this!

Now, in your fourms root index.php file, look for:

Code:

$inforum = array();
which should be around line 368.

Replace everything below it down to (but not including)

Code:

// memory saving
which should be around line 426 with this:

Code:

// Get the users in vBChat
        $vbchat_users = array();

        while ($loggedin = $DB_site->fetch_array($forumusers))
        {
                $userid = $loggedin['userid'];
                if (!$userid)
                {        // Guest
                        $numberguest++;
                        $inforum["$loggedin[inforum]"]++;
                }
                else if (empty($userinfos["$userid"]) OR ($userinfos["$userid"]['lastactivity'] < $loggedin['lastactivity']))
                {
                        $userinfos["$userid"] = $loggedin;
                $numberregistered++;
                        if ($userid != $bbuserinfo['userid'])
                        {
                                $inforum["$loggedin[inforum]"]++;
                        }
                        $loggedin['musername'] = fetch_musername($loggedin);

                        if (fetch_online_status($loggedin))
                        {
                                $numbervisible++;
                                eval('$activeusers .= ", ' . fetch_template('forumhome_loggedinuser') . '";');

                if(preg_match("/vBChat.php/",$loggedin['location']) && $loggedin['userid']){
                $vbchat_users[$loggedin['userid']] = $loggedin;
                }
      }
  }
}
        // Configure Peeps In vBChat
        $invBChat = "";

        if(is_array($vbchat_users)){
                foreach($vbchat_users as $invbc){
                        if($invBChat == ""){
                        $extra = "";
                        } else {
                        $extra = ", ";
                        }

                // Get Username Style
                $invbc['musername'] = fetch_musername($invbc);

                $invBChat .= "{$extra}<a href='member.php?{$session['sessionurl']}&u={$invbc['userid']}'>{$invbc['musername']}</a>";
                }
        }

        if($invBChat == ""){
        $invBChat = "<i>No one is currently inside vBChat</i>";
        }


This should work for 3.0.0 and 3.0.1.

Harley D 11-12-2004 12:24 PM

Quote:

Originally Posted by wattieuk
Got this working this morning - thank you very much for all the help and for developing the mod - it's much appreciated. The only thing I would like to change is the size of the messages window which at the moment needs to scroll to the right to be able to see all of the posted messages.
Is there any way to stop this from happening? Cheers.

Anyone have any luck correcting this?

RsX 11-12-2004 12:56 PM

Quote:

Originally Posted by SVTOA
If you have trouble with your forumhome "Who's online" or find that no members show up as chatting on the forumhome even when they are in the chat, this may work for you:

Make a backup of your forums root index.php file before you try this!

Now, in your fourms root index.php file, look for:

Code:

$inforum = array();
which should be around line 368.

Replace everything below it down to (but not including)

Code:

// memory saving
which should be around line 426 with this:

Code:

// Get the users in vBChat
        $vbchat_users = array();

        while ($loggedin = $DB_site->fetch_array($forumusers))
        {
                $userid = $loggedin['userid'];
                if (!$userid)
                {        // Guest
                        $numberguest++;
                        $inforum["$loggedin[inforum]"]++;
                }
                else if (empty($userinfos["$userid"]) OR ($userinfos["$userid"]['lastactivity'] < $loggedin['lastactivity']))
                {
                        $userinfos["$userid"] = $loggedin;
                $numberregistered++;
                        if ($userid != $bbuserinfo['userid'])
                        {
                                $inforum["$loggedin[inforum]"]++;
                        }
                        $loggedin['musername'] = fetch_musername($loggedin);

                        if (fetch_online_status($loggedin))
                        {
                                $numbervisible++;
                                eval('$activeusers .= ", ' . fetch_template('forumhome_loggedinuser') . '";');

                if(preg_match("/vBChat.php/",$loggedin['location']) && $loggedin['userid']){
                $vbchat_users[$loggedin['userid']] = $loggedin;
                }
      }
  }
}
        // Configure Peeps In vBChat
        $invBChat = "";

        if(is_array($vbchat_users)){
                foreach($vbchat_users as $invbc){
                        if($invBChat == ""){
                        $extra = "";
                        } else {
                        $extra = ", ";
                        }

                // Get Username Style
                $invbc['musername'] = fetch_musername($invbc);

                $invBChat .= "{$extra}<a href='member.php?{$session['sessionurl']}&u={$invbc['userid']}'>{$invbc['musername']}</a>";
                }
        }

        if($invBChat == ""){
        $invBChat = "<i>No one is currently inside vBChat</i>";
        }


This should work for 3.0.0 and 3.0.1.

It works, but the only problem is that i cannot see myself online, how can i fix this? please help

jzewatsky 11-12-2004 05:14 PM

Let me start by saying that I just started with VB this week and found the mod install very easy to follow....THANK YOU!!!!

I was wondering if a chat log option was available or in consideration for the future.

Thanks for the great mod!!

SVTOA 11-12-2004 07:17 PM

Quote:

Originally Posted by RsX
It works, but the only problem is that i cannot see myself online, how can i fix this? please help


Others see you, don't worry about it. Nobody sees themselves as in the chat, so it works correctly. If you can access another machine, and view your forums while logged out (and remain logged in and in the chat on the other machine) you will see yourself listed along with everyone else.

Blam Forumz 11-12-2004 07:35 PM

Quote:

Originally Posted by SVTOA
Others see you, don't worry about it. Nobody sees themselves as in the chat, so it works correctly. If you can access another machine, and view your forums while logged out (and remain logged in and in the chat on the other machine) you will see yourself listed along with everyone else.

wrong.

My users dont show up in chat for ages for some reason

I however do...

along with 1 or 2 of the people in chat.

RsX 11-12-2004 09:12 PM

I gave up on that........... i deletede the "whose in vbchat" thing.. All i wanna know .. And i wanted to know for a week now...

1)How can i change the inframe background without killing the style sheet?

Recent Question:

2)How can i set what/how many smilies to show in the milie panel?

madhouse 11-13-2004 02:04 AM

ok ZT , what would be the code differnce between 3.0.1 Vb and 3.0.3Vb for the Forum Home "Who's in Vb Chat " Box to make it show the users...

I dug through the file and really did not see that big of a change and what was change does not appear to be such a big issue for it not to print out.

Red Blaze 11-13-2004 02:34 AM

Quote:

Originally Posted by RsX
I gave up on that........... i deletede the "whose in vbchat" thing.. All i wanna know .. And i wanted to know for a week now...

1)How can i change the inframe background without killing the style sheet?


Recent Question:


2)How can i set what/how many smilies to show in the milie panel?

You can't. You have to make your own style sheet in that template so you can have your own bg in the chat.

Can't answer the second question, sorry.

Vorty 11-13-2004 02:22 PM

Quote:

Originally Posted by Jaxx
Only problem I have is some the smilies are showing up as just red x's.

I have the exact same problem.

All my smilies are in: http://www.FORUMNAME.com/forums/ :ermm:

They should be at: http://www.FORUMNAME.com/forums/images/smilies/ - right?

How can I fix that? Please help me.. :)

nnjj.net 11-13-2004 05:09 PM

hi,

the Prune vBChat By Days,

how I can change this to be deleted aout as soon the member leave the chat?

nnjj.net 11-13-2004 05:19 PM

can somebody answer my Q's

how I can change the timing of the refresh and the background of the refresh?
also if I have catagories of smiles, how I can spacify one category only of that to be appear on the chat?

thanks

wattieuk 11-13-2004 10:27 PM

I have it working fine now - thanks for the mod. However, when people leave the chatroom they still show on forum home 'Who's Chatting' for some time. Any way of refreshing this?

reteep 11-14-2004 12:13 PM

Thanks Zero Tolerance, that's a really great hack!

djjeffa 11-14-2004 05:42 PM

Quote:

Originally Posted by stormblast
Thanks Zero Tolerance, that's a really great hack!

have we found a fix on the whosin chat and the smilly problem?

Sweet Evil 11-14-2004 06:18 PM

My Avatars are showing up in the chat smilies line.. Weird?

SVTBlackLight01 11-14-2004 07:05 PM

Quote:

Originally Posted by Jaxx
Thanks for the update.

Only problem I have is some the smilies are showing up as just red x's.

Same problem here.

Another feature could be to have a pop-up for the rest of the smilies like normal posting.

Harley D 11-15-2004 03:14 AM

Quote:

Originally Posted by SVTOA
If you have trouble with your forumhome "Who's online" or find that no members show up as chatting on the forumhome even when they are in the chat, this may work for you:

Make a backup of your forums root index.php file before you try this!

Now, in your fourms root index.php file, look for:

Code:

$inforum = array();
which should be around line 368.

Replace everything below it down to (but not including)

Code:

// memory saving
which should be around line 426 with this:

Code:

// Get the users in vBChat
        $vbchat_users = array();

        while ($loggedin = $DB_site->fetch_array($forumusers))
        {
                $userid = $loggedin['userid'];
                if (!$userid)
                {        // Guest
                        $numberguest++;
                        $inforum["$loggedin[inforum]"]++;
                }
                else if (empty($userinfos["$userid"]) OR ($userinfos["$userid"]['lastactivity'] < $loggedin['lastactivity']))
                {
                        $userinfos["$userid"] = $loggedin;
                $numberregistered++;
                        if ($userid != $bbuserinfo['userid'])
                        {
                                $inforum["$loggedin[inforum]"]++;
                        }
                        $loggedin['musername'] = fetch_musername($loggedin);

                        if (fetch_online_status($loggedin))
                        {
                                $numbervisible++;
                                eval('$activeusers .= ", ' . fetch_template('forumhome_loggedinuser') . '";');

                if(preg_match("/vBChat.php/",$loggedin['location']) && $loggedin['userid']){
                $vbchat_users[$loggedin['userid']] = $loggedin;
                }
      }
  }
}
        // Configure Peeps In vBChat
        $invBChat = "";

        if(is_array($vbchat_users)){
                foreach($vbchat_users as $invbc){
                        if($invBChat == ""){
                        $extra = "";
                        } else {
                        $extra = ", ";
                        }

                // Get Username Style
                $invbc['musername'] = fetch_musername($invbc);

                $invBChat .= "{$extra}<a href='member.php?{$session['sessionurl']}&u={$invbc['userid']}'>{$invbc['musername']}</a>";
                }
        }

        if($invBChat == ""){
        $invBChat = "<i>No one is currently inside vBChat</i>";
        }


This should work for 3.0.0 and 3.0.1.

This also worked on 3.0.3

Harley D 11-15-2004 03:16 AM

Can a time stamp replace the status text? I think it would be more usefull.

Europeanlee 11-16-2004 12:08 AM

Does this work on VB 2.3.2 by any chance?

Koutaru 11-16-2004 08:11 PM

Quote:

Originally Posted by Europeanlee
Does this work on VB 2.3.2 by any chance?

NO, it is only for vb3

Nice job by the way ;) I don't know why I never saw this hack here before o_O
Another cool feature would probably be AUTO prune as cron, but I'm sure that I will be able to set one up anyway

Zero Tolerance 11-16-2004 09:07 PM

vBChat 1.1.1 Released
This minor upgrade release has the following 2 features:

Ability to change the smilie data grab type - This will stop Red X's appearing (but will use 1 extra mySQL query)
Auto Prune vBChat - Turn On/Off And Set How Many Days To Prune MSG's

Enjoy :)

- Zero Tolerance

RsX 11-16-2004 09:40 PM

Thanks alot ^^ bdw, i wanned 2 know how i can set specific smilies to appear, and now for the 1 question that remains unanswered, and plz someone help me fix this:

How can I change the inframe background without killing the style sheet?


All times are GMT. The time now is 11:13 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.02224 seconds
  • Memory Usage 1,983KB
  • 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
  • (9)bbcode_code_printable
  • (2)bbcode_php_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