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)
-   -   [HTL] Hack Tracking Log (https://vborg.vbsupport.ru/showthread.php?t=60735)

MrZeropage 04-21-2004 06:19 AM

Thanks, I installed this great thing on vBulletin 3.0.1 and have one problem:

In the admin-controlpanel I can not see anything in the left navbar on top in the menu. There is no gfx or text in it, but clicking in the second row switches to the HTL-menu and backwards.

But where is the text ?!

KTBleeding 04-21-2004 11:18 PM

Quote:

Originally Posted by KTBleeding
Well now when I click on "Hacks Menu" nothing happens in the right frame. It stays where it was previously. I can always type in "/hackadmin.php" manually, but still..

:nervous: ??

JaNa 04-22-2004 12:07 AM

Works, and it's great!

And here's a tiny tiny bug I found while in admin cp

low HTML in Shouts?
Set this to 'yes' to allow users to post HTML in their shouts. <i>STRONGLY NOT RECOMMENDED!</i>

-The <i> </i> appears, instead of taking effect.

flup 04-23-2004 03:01 PM

Is there a good dutch explanation about what this hack does? since i dont understand it ..

/me feels dumb

KTBleeding 04-23-2004 04:56 PM

Quote:

Originally Posted by KTBleeding
Well now when I click on "Hacks Menu" nothing happens in the right frame. It stays where it was previously. I can always type in "/hackadmin.php" manually, but still..

Is anyone else having this problem after the vb3.0.1 upgrade?

Sketch 04-26-2004 09:53 AM

Definitely into this hack. I've released my first major hack under HTL and plan to release more. Plus, I think I'll evanglize a little and try to get more people to use this system. There's not enough people using it...

Aaron

Hoffi 04-28-2004 08:16 PM

I just Installed it and there are missing Phrases! The new Menu to switch in the AdminCP is empty. I can click on an empty cell and it changes. btw: The Change is awful, Why change between two Menus?
And the Settings are empty with no phrases. I use a complete German Forum.

Any suggestions?

Sketch 04-28-2004 09:14 PM

You'd have to translate the english phrases into german, I'd imagine

Hoffi 04-30-2004 08:18 PM

Quote:

Originally Posted by Sketch
You'd have to translate the english phrases into german, I'd imagine

In all other Parts I see english Text. In the Database I can see the Phrases, but I did not see them in the Phrasemanager.

Lurk 05-01-2004 12:10 AM

I uploaded a new admincp/index.php file and i can't find the htl groups, what do i modify to re-add them? (Manually)

neocorteqz 05-01-2004 01:21 AM

Quote:

Originally Posted by Lurk
I uploaded a new admincp/index.php file and i can't find the htl groups, what do i modify to re-add them? (Manually)

Find in File admincp/index.php around line 497

Code:

// cache nav prefs
        can_administer();

        construct_nav_spacer();

and Below that ADD

Code:

// [START HACK='Hack Tracking Log' AUTHOR='KuraFire' VERSION='1.00 Gold' CHANGEID= 1 ]
        // first we get the config_htl.php file that we need for some of this..
        require_once('./includes/config_htl.php');

        $thisnav = (!isset($_GET['hacksnav'])) ? 'vb' : 'hacks';

        construct_nav_option2($vbphrase['htl_cphome_refresh_current_menu'], 'index.php?do=nav' . iif($thisnav!='vb' AND $vboptions['htl_use_dual_nav'], '&amp;hacksnav=1'), '<br />');

        if ($vboptions['htl_use_dual_nav'])
        {
                if ($_REQUEST['hacksnav'] == 1)
                {
                        define('QUICKSTOP', true);
                        $thisnav = 'hacks';
                }
                construct_nav_option2(iif($thisnav=='vb', $vbphrase['htl_cphome_hacks_menu'], $vbphrase['htl_cphome_standard_vb_menu']),
                        'index.php?do=nav' . iif($thisnav=='vb', '&amp;hacksnav=1'), '<br />');
        }

        construct_nav_group($vbphrase['htl_cphome_menu_navigation']);
        construct_nav_spacer();

        if (!$vboptions['htl_use_dual_nav'])
        {
                // place this line lower in this section to have the hack menu items appear elsewhere
                build_hacknavs();
        }

        if (defined('QUICKSTOP'))
        {
                build_hacknavs();

                print_nav_panel();

                echo "</div>\n";
                // *************************************************

                define('NO_CP_COPYRIGHT', true);
                unset($DEVDEBUG);
                print_cp_footer();
                exit;
        }
// [END HACK='Hack Tracking Log' AUTHOR='KuraFire' VERSION='1.00 Gold' CHANGEID= 1 ]

Find in File includes/adminfunctions_navpanel.php around line 264

Code:

        <?php

        echo $controls . $_NAV . $_controls;
}

ADD Below that

Code:

// [START HACK='Hack Tracking Log' AUTHOR='KuraFire' VERSION='1.00 Gold' CHANGEID= 2 ]
// ###################### Start makenavoption 2#######################
// similar to the normal one, except it doesn't send you to the main frame.
// function granted to the HTL by trafix, copyright (C) trafix
function construct_nav_option2($title, $url, $extra = '')
{
        global $session, $options;
        static $sessionlink;
       
        if (!isset($options))
        {
                $options = array();
                if ($session['sessionurl'] == '')
                {
                        $sessionlink = '';
                }
                else
                {
                        $sessionlink = "&amp;s=$session[sessionhash]";
                }
        }

        $options[] = "\t\t<div class=\"navlink-normal\" onclick=\"location='$url$sessionlink';\" onmouseover=\"this.className='navlink-hover';\" onmouseout=\"this.className='navlink-normal'\"><a href=\"$url$sessionlink\" target=\"_self\" onclick=\"window.event.cancelBubble = true;\">$title</a>$_extra</div>\n";
}


// ###################### Start build_hacknavs ######################
// creates navpanel menu blocks for all hacks in the HTL that have this enabled
function build_hacknavs()
{
        global $DB_site;
        static $hackmenu;

        $get_hack_navs = $DB_site->query("SELECT menubits FROM " . TABLE_PREFIX . "hack WHERE (options & " . HTLSETTING_SHOWMENU . ") AND atstep=-1");

        while ($hackmenu = $DB_site->fetch_array($get_hack_navs))
        {
                construct_hack_nav($hackmenu['menubits']);
        }
}


// ###################### Start construct_hack_nav ##################
// takes $ser_data, which is a serialized array with info, and creates
// a whole menu block item out of it :)
function construct_hack_nav($ser_data)
{
        global $vboptions;

        $prefix = ($vboptions['htl_prefix_titles']) ? $vboptions['htl_prefix_what'] : '';

        $data = unserialize($ser_data);

        if (sizeof($data) > 1)
        {
                $title = $data[0];
                unset($data[0]);
                foreach($data as $displayorder=>$arry)
                {
                        construct_nav_option($arry['text'], $arry['url'], '<br />');
                }

                construct_nav_group($prefix . $title, '<hr />');
                construct_nav_spacer();
        }
}
// [END HACK='Hack Tracking Log' AUTHOR='KuraFire' VERSION='1.00 Gold' CHANGEID= 2 ]

Find in File includes/adminfunctions_template.php around line 3079 (Basically at the end of the file)

Code:

);
Add Below

Code:

// [START HACK='Hack Tracking Log' AUTHOR='KuraFire' VERSION='1.00 Gold' CHANGEID= 3 ]
if ($_SERVER['PHP_SELF'] == "/$admincpdir/template.php")
{
        require_once('./includes/config_htl.php');
        if ($vboptions['htl_use_auto_tgroups'] == 1)
        {
                $hack_tgroups = $DB_site->query("SELECT groupname, title FROM " . TABLE_PREFIX . "hack WHERE (options & " . HTLSETTING_SHOWTEMPLATEGROUP . ") AND atstep = -1 AND groupname != ''");

                while ($tgroup = $DB_site->fetch_array($hack_tgroups))
                {
                        $name        = preg_replace('/[^a-z]/', '', strtolower($tgroup['groupname']));
                        $only[$name] = $tgroup['title'];
                }
        }
}
// [END HACK='Hack Tracking Log' AUTHOR='KuraFire' VERSION='1.00 Gold' CHANGEID= 3 ]

These three things need to be done for it to show up in the AdminCP.
Already done the edits to
includes/adminfunctions_template.php
includes/adminfunctions_navpanel.php

Just do the Index.php edit. ;) :) You can always access the Hack List by directly calling the script in your browser. and then the above steps would be found by running a test install, should be step 6 of 6.

Zachariah 05-02-2004 08:49 PM

psssst .... I am Install: 200 :D

Thank you. :banana:

MrZeropage 05-03-2004 08:53 AM

This did not help at all.

I installed HTL correct, but thus I am using vBulletin 3.0.1 there is an empty menu in the top of the navbar in the admincp.

How can I get this menu being filled with words ?

It is the menu that switches the "side" of the navpanel and brings me to the HTL-Menu.

neocorteqz 05-04-2004 02:04 AM

Quote:

Originally Posted by MarcelM
This did not help at all.

I installed HTL correct, but thus I am using vBulletin 3.0.1 there is an empty menu in the top of the navbar in the admincp.

How can I get this menu being filled with words ?

It is the menu that switches the "side" of the navpanel and brings me to the HTL-Menu.

did all the phrases get added?

adusei 05-04-2004 04:15 PM

Since I'm using vB3.0.1 now - I tried to install the great HTL again. And I got the same problem as before with the vBRC-Versions -: After step two the installer stays idle.WHY???
I tried to install manually - but the phrases are not installed.
What is to be done?

PLEASE H E L P !!!

adusei

Wifey 05-05-2004 04:30 PM

Help! I'm getting this error now in my admincp

Fatal error: Call to undefined function: construct_nav_option2() in /home/degrassi/public_html/admincp/index.php on line 526

And I can't see any options

edit: Okay I solved it. The hack instructs in the install are wrong. In the second php file change it says for you to place the stuff ABOVE the echo whatever when it should be below.

DS MrSinister 05-07-2004 06:35 PM

Quote:

Warning: halt(): open_basedir restriction in effect. File(./includes/functions_log_error.php) is not within the allowed path(s): (/home/drunk78/:/usr/lib/php:/usr/local/lib/php:/tmp) in /home/drunk78/public_html/forum/includes/db_mysql.php on line 388
not sure if its your hack or vbindex.. I put up a test site.. and after a few days later i am getting this error.


VB 3.0.1

I had 3.0.0 amd i upgraded it..

not sure any more.. if you can be any help thanks..

Holidazed 05-07-2004 06:58 PM

Quote:

Originally Posted by eXtremeTim
Thats the way i feel but with some of the new changes in some of the hacks that im able to do with this easy using the htl like the settings im not sure if i will have two versions for all my hacks. Time was the reason i never made talkerbot 2.0.3 which now that this is here and making it alot less time consuming for me to add and distibute the settings changes and stuff for it I am now making version 2.0.3

What is the status on Talkerbot 2.03?

Kalipo 05-07-2004 09:38 PM

Could anyone help me.

Im trying to install the shoutbox via HTL i put the files in the Htl folder and they wont show up in the installer.. plus when i installed the menu on the side panal "manage hacks" doesnt show..

Anyone?

jaliam 05-08-2004 09:44 AM

This hack is wonderful and it works with vB 3.0.1. Thanks, Kura!

Kalipo 05-08-2004 10:15 AM

Ok i get this error when running a hack.. finally got the other thing to work but this is the error..


Database error in vBulletin 3.0.1:

Invalid SQL: INSERT INTO hacklog (hacklogid, hackid, modname, modtype, linenumber, changetype, userid, oldcode, newcode, dateline, lastmodified, notes) VALUES ('', 3, 'includes/adminfunctions_template.php', 0, 3079, 2, 1, ');', 'if ($_SERVER[\'PHP_SELF\'] == \"/$admincpdir/template.php\")
{
require_once(\'./includes/config_htl.php\');
if ($vboptions[\'htl_use_auto_tgroups\'] == 1)
{
$hack_tgroups = $DB_site->query(\"SELECT groupname, title FROM \" . TABLE_PREFIX . \"hack WHERE (options & \" . HTLSETTING_SHOWTEMPLATEGROUP . \") AND atstep = -1 AND groupname != \'\'\");

while ($tgroup = $DB_site->fetch_array($hack_tgroups))
{
$name = preg_replace(\'/[^a-z]/\', \'\', strtolower($tgroup[\'groupname\']));
$only[$name] = $tgroup[\'title\'];
}
}
}', 1064508412, 1075038411, 'This is all the way at the VERY END of the adminfunctions_template.php file! You just basically add the code at the bottom :)'), ('', 3, 'admincp/index.php', 0, 497, 2, 1, ' // cache nav prefs
can_administer();

construct_nav_spacer();', ' // first we get the config_htl.php file that we need for some of this..
require_once(\'./includes/config_htl.php\');

$thisnav = (!isset($_GET[\'hacksnav\'])) ? \'vb\' : \'hacks\';

construct_nav_option2($vbphrase[\'htl_cphome_refresh_current_menu\'], \'index.php?do=nav\' . iif($thisnav!=\'vb\' AND $vboptions[\'htl_use_dual_nav\'], \'&amp;hacksnav=1\'), \'<br />\');

if ($vboptions[\'htl_use_dual_nav\'])
{
if ($_REQUEST[\'hacksnav\'] == 1)
{
define(\'QUICKSTOP\', true);
$thisnav = \'hacks\';
}
construct_nav_option2(iif($thisnav==\'vb\', $vbphrase[\'htl_cphome_hacks_menu\'], $vbphrase[\'htl_cphome_standard_vb_menu\']),
\'index.php?do=nav\' . iif($thisnav==\'vb\', \'&amp;hacksnav=1\'), \'<br />\');
}

construct_nav_group($vbphrase[\'htl_cphome_menu_navigation\']);
construct_nav_spacer();

if (!$vboptions[\'htl_use_dual_nav\'])
{
// place this line lower in this section to have the hack menu items appear elsewhere
build_hacknavs();
}

if (defined(\'QUICKSTOP\'))
{
build_hacknavs();

print_nav_panel();

echo \"</div>\\n\";
// *************************************************

define(\'NO_CP_COPYRIGHT\', true);
unset($DEVDEBUG);
print_cp_footer();
exit;
}', 0, 1075038411, 'In the new code below, the first occurance of <b><u>build_hacknavs();</u></b> reflects the position in the navpanel where the Hack menu items will appear. If you want them elsewhere, shift the code to your desired location. NOTE: this is only applicable if you <i>don\'t</i> use Dual Navigation.'), ('', 3, 'includes/adminfunctions_navpanel.php', 0, 264, 2, 1, ' <?php

echo $controls . $_NAV . $_controls;
}
', '// ###################### Start makenavoption 2#######################
// similar to the normal one, except it doesn\'t send you to the main frame.
// function granted to the HTL by trafix, copyright (C) trafix
function construct_nav_option2($title, $url, $extra = \'\')
{
global $session, $options;
static $sessionlink;

if (!isset($options))
{
$options = array();
if ($session[\'sessionurl\'] == \'\')
{
$sessionlink = \'\';
}
else
{
$sessionlink = \"&amp;s=$session[sessionhash]\";
}
}

$options[] = \"\\t\\t<div class=\\\"navlink-normal\\\" onclick=\\\"location=\'$url$sessionlink\';\\\" onmouseover=\\\"this.className=\'navlink-hover\';\\\" onmouseout=\\\"this.className=\'navlink-normal\'\\\"><a href=\\\"$url$sessionlink\\\" target=\\\"_self\\\" onclick=\\\"window.event.cancelBubble = true;\\\">$title</a>$_extra</div>\\n\";
}


// ###################### Start build_hacknavs ######################
// creates navpanel menu blocks for all hacks in the HTL that have this enabled
function build_hacknavs()
{
global $DB_site;
static $hackmenu;

$get_hack_navs = $DB_site->query(\"SELECT menubits FROM \" . TABLE_PREFIX . \"hack WHERE (options & \" . HTLSETTING_SHOWMENU . \") AND atstep=-1\");

while ($hackmenu = $DB_site->fetch_array($get_hack_navs))
{
construct_hack_nav($hackmenu[\'menubits\']);
}
}


// ###################### Start construct_hack_nav ##################
// takes $ser_data, which is a serialized array with info, and creates
// a whole menu block item out of it :)
function construct_hack_nav($ser_data)
{
global $vboptions;

$prefix = ($vboptions[\'htl_prefix_titles\']) ? $vboptions[\'htl_prefix_what\'] : \'\';

$data = unserialize($ser_data);

if (sizeof($data) > 1)
{
$title = $data[0];
unset($data[0]);
foreach($data as $displayorder=>$arry)
{
construct_nav_option($arry[\'text\'], $arry[\'url\'], \'<br />\');
}

construct_nav_group($prefix . $title, \'<hr />\');
construct_nav_spacer();
}
}', 1065286318, 1075038411, 'The file edit below adds some important functions for the navpanel.')
mysql error: Unknown column 'changetype' in 'field list'

mysql error number: 1054

Date: Saturday 08th of May 2004 12:14:38 PM

monstergamer 05-09-2004 09:51 PM

installed and working but when i try to view the hacks i installed i see nothing
http://www.monstergamer.net/vb/hacklog.php

please help

WHC_Luke 05-11-2004 08:25 PM

Quote:

Originally Posted by adusei
Since I'm using vB3.0.1 now - I tried to install the great HTL again. And I got the same problem as before with the vBRC-Versions -: After step two the installer stays idle.WHY???
I tried to install manually - but the phrases are not installed.
What is to be done?

PLEASE H E L P !!!

adusei

i have this issue myself I cant advance past step 2....it does step one and then when i tell it to continue it wont...it doenst show me the continue button or ne thing.....ne help here......

Mhaddy 05-12-2004 10:11 PM

Just upgraded to vB 3.0.1 and installed the HTL - beauty! Great work.

MrZeropage 05-19-2004 10:24 AM

Quote:

Originally Posted by neocorteqz
did all the phrases get added?


Yes, all phrases are added - I now also found that I don't have access-right to modify any hack :surprised:

What is going on there ?

Where can I setup the rights for my admin-account that I can access and modify the hacks ?

Renagade 05-23-2004 12:58 PM

Thanks for the hack. Installing it now.

GregorS 05-23-2004 07:50 PM

Quote:

Originally Posted by Kalipo
Could anyone help me.

Im trying to install the shoutbox via HTL i put the files in the Htl folder and they wont show up in the installer.. plus when i installed the menu on the side panal "manage hacks" doesnt show..


Anyone?

Hi!

I have the same problem! :(
No menuitems and no descriptions.....
i think it is the german language.....


I install the "Multiple Profile Pictures" hack and i see only the selections but no descriptions or menuitems... (have a look to my attachments...)


thx

neocorteqz 05-24-2004 04:22 PM

Quote:

Originally Posted by MarcelM
Yes, all phrases are added - I now also found that I don't have access-right to modify any hack :surprised:

What is going on there ?

Where can I setup the rights for my admin-account that I can access and modify the hacks ?

under the hack in question, you'd select edit hack details, then from there you add the userid of the admins you'd like access to install.

at least that's how its supposed to work.

Leah 05-24-2004 10:19 PM

Hi,
Just wantet to share that I did some research and found out what needed to be done to make the installation work past the step 2- missing button thing.

Here's the intructions I followed:
http://www.everythingvb.com/showpost...68&postcount=2

xQuEeNzNaZcHox 06-09-2004 06:53 PM

Is this useful for when you upgrade vBulletin?

neocorteqz 06-09-2004 11:07 PM

Quote:

Originally Posted by xQuEeNzNaZcHox
Is this useful for when you upgrade vBulletin?

it can be if you have many different hacks installed with it.

InnerSelf 06-14-2004 09:14 PM

i just bought a new skin and i wonder howto put the templates what the [HTL] Hack Tracking Log putted in my earlier style to put it now in my new style. cause everything is going automatic i dont know what he exactly added.

thnx

joanne862 06-17-2004 06:22 PM

Trying to install the HTL. It seemed to work fine the first time, but there was no htl menu in my admin cp. I wondered if this was because Hack_Tracking_Log.htl hadn't uploaded in binary, so I tried overwriting that and running the install program again. But when I got to Insert Hack Phrases (Step 2 of 5), there was no next step button.
I've tried deleting all files and reverting the .php files that I know were modified, but the same still happens when I get to step 2 of the installation, it won't let me go any further.
Thanks

neocorteqz 06-17-2004 11:23 PM

Quote:

Originally Posted by joanne862
Trying to install the HTL. It seemed to work fine the first time, but there was no htl menu in my admin cp. I wondered if this was because Hack_Tracking_Log.htl hadn't uploaded in binary, so I tried overwriting that and running the install program again. But when I got to Insert Hack Phrases (Step 2 of 5), there was no next step button.
I've tried deleting all files and reverting the .php files that I know were modified, but the same still happens when I get to step 2 of the installation, it won't let me go any further.
Thanks

Did you do the three files edits?

admincp/index.php
includes/adminfunctions_navpanel.php
includes/adminfunctions_emplates.php

You need to do those for the menu navigation section to show up.

if you do those, then the section will show up above the vBulletin Options section.

neocorteqz 06-18-2004 05:29 PM

refer to this post for adding the link (section) in your adminCP

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

they show up in the actual install phase, second to last step.
I got an email stating there was a new post, and read the post, but when i got here, it wasn't here. :ermm:

As for the uninstall process. I don't think uninstalling is supported in this version, but how to uninstall the HTL would be to go into your hacks menu, and in the drop down box next to the HTL, select 'Uninstall Hack'

But you don't need to reinstall it.

Just point your browser to admincp/hackadmin.php?do=modify

and it will go to the Hacks menu. Just do the hacks above and it will add the section i was refering to.

Hope this helps. Ohh and the post that was there, but never was. :p

Quote:

Originally Posted by joanne862
No, those weren't listed in the readme file. The readme file just said to upload all files and run the install script.
I can't find instructions for these file edits, where are they?

Plus, how can I completely uninstall the htl so I can start afresh and get the install script to run?

Thanks :)

Best of luck. :)

AbstractHipHop 06-20-2004 04:26 PM

nice work Kura
i hit install

J-TEK 06-22-2004 05:26 AM

It wont let me upload in Binary, I tried to but its only doing ASCII. So i tried doing the install_htp.php with the link of my page (www.yoursite.com/forum/admincp/install_htm.php) does not work for me i have to do it like this "www.mysite.com/board/index/php/adminmp/install_htp.php" , sometimes when i do that it'll just show me my board regularly and another time it went with like 4 Debug messages and it showed my site with the header messed up and as if it were another color and froze when it tried uploading the last "image", Help?

Bobbo 07-07-2004 04:14 PM

Quote:

Originally Posted by Zelda-King
KuraFire: Your instructions did the trick. Many thanks! I thought I'd better say that in this thread so people know it wasn't a fault with the hack script at all. Very impressive support!


Kura/Zelda,

I'm experiencing the same problem.

"You don't have permission to see the File- or Template edits for this Hack!" and
"Warning: Wrong datatype for second argument in call to in_array in /home/www/xdxusa/forums/admincp/hackadmin.php on line 2184"

Looked through the thread and didn't see the post that contained KuraFire's instructions that you mentioned above. (unless I'm just spacing it today)

Could you please post what you did to resolve? Many Thanks!


*edit* Scratch that. Figured it out. Thanks anyways.

Vman 07-12-2004 09:52 PM

This is the error Im getting and I have not read a fix for this at all!!!

"This step inserts all the new phrases for the Hack Tracking Log. It creates one new phrase group on the language table, phrasegroup_hacklog, and inserts a selection of phrases into existing vBulletin Phrase Groups (such as error phrases, etc)."

What gives...It worked fine with 3.0.1 but since I upgrade to 3.0.3 its not working!!!

neocorteqz 07-12-2004 10:12 PM

Quote:

Originally Posted by BBCVman
This is the error Im getting and I have not read a fix for this at all!!!

"This step inserts all the new phrases for the Hack Tracking Log. It creates one new phrase group on the language table, phrasegroup_hacklog, and inserts a selection of phrases into existing vBulletin Phrase Groups (such as error phrases, etc)."

What gives...It worked fine with 3.0.1 but since I upgrade to 3.0.3 its not working!!!

You do not need to reinstall the HTL when upgrading, the Database and phrases are already there, you need only make the necessary file edits as instructed in the second to last step. the three file edits are listed in one of my post in this thread, on one of the previous pages. or you can do a test (Verbose) install, and find the file edits there. point to hackadmin.php in your adminCP.


All times are GMT. The time now is 12: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.02533 seconds
  • Memory Usage 1,899KB
  • 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
  • (6)bbcode_code_printable
  • (16)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)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