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)
-   -   vBadvanced Homepage (https://vborg.vbsupport.ru/showthread.php?t=59803)

Zachery 01-26-2004 04:35 AM

its not somthing you can just do $thread[icon] is whats pulling it. and its a database call :)

digitalSite 01-26-2004 04:37 AM

If anyone knows some of this stuff, please let me know if you can help. This is what the Thread Icon stuff looks like in the index page:

Code:

// Thread Icon
                if ($vboptions['showthreadicon'])
                {
                        if (!$thread['iconid'])
                        {
                                if ($vboptions['showdeficon'])
                                {
                                        $thread['icon'] = '<img src="' . $vboptions['showdeficon'] . '" border="0" alt="' . $thread['icontitle'] . '" />';
                                }
                                else
                                {
                                        $thread['icon'] = '';
                                }
                        }
                        else
                        {
                                $thread['iconpath'] = $iconcache["$thread[iconid]"]['iconpath'];
                                $thread['icontitle'] = $iconcache["$thread[iconid]"]['icontitle'];
                                $thread['icon'] = '<img src="' . $thread['iconpath'] . '" border="0" alt="' . $thread['icontitle'] . '" />';
                        }
                }

                $getbgrow = getrowcolor();
                eval('$threadbits .= "' . fetch_template('index_threadbits') . '";');
        }
  $DB_site->free_result($threads);
  unset($thread);
}

So, i guess i will play with this, lol.

Zachery 01-26-2004 04:40 AM

Quote:

Originally Posted by digitalSite
If anyone knows some of this stuff, please let me know if you can help. This is what the Thread Icon stuff looks like in the index page:

Code:

// Thread Icon
                if ($vboptions['showthreadicon'])
                {
                        if (!$thread['iconid'])
                        {
                                if ($vboptions['showdeficon'])
                                {
                                        $thread['icon'] = '<img src="' . $vboptions['showdeficon'] . '" border="0" alt="' . $thread['icontitle'] . '" />';
                                }
                                else
                                {
                                        $thread['icon'] = '';
                                }
                        }
                        else
                        {
                                $thread['iconpath'] = $iconcache["$thread[iconid]"]['iconpath'];
                                $thread['icontitle'] = $iconcache["$thread[iconid]"]['icontitle'];
                                $thread['icon'] = '<img src="' . $thread['iconpath'] . '" border="0" alt="' . $thread['icontitle'] . '" />';
                        }
                }

                $getbgrow = getrowcolor();
                eval('$threadbits .= "' . fetch_template('index_threadbits') . '";');
        }
  $DB_site->free_result($threads);
  unset($thread);
}

So, i guess i will play with this, lol.

just a note to you. if your using a standard vB3 style and not a vB2. all your counters have been updated and both your post icons and smilies have been given correct paths they should all be displaying fine

however if you cannot figure out what is wrong just copy the corosponding folders into the root dir and your problems will be solved quicker that way

CarolinaKid 01-26-2004 04:43 AM

Quote:

Originally Posted by digitalSite
If I understand you correctly, you are saying to go to edit templates and look for where they have "Latest Threads" and just add "/forums" in front of the icon variable...if this is what you are saying, I have already tried this.

This is what the threadbit template looks like:

Code:

<!-- cut -->
<tr>
<td class="$getbgrow">$thread[icons]<span class="smallfont"><b><a href="$vboptions[bburl]/showthread.php?t=$thread[threadid]" title="$vbphrase[a_last_post_by] $thread[lastposter] $vbphrase[a_at] $lastposttime">$title</a></b><br />
<if condition="$vboptions['showthreaddate']">$thread[date] $thread[time]<br /></if>
<!-- cut -->

Notice the $thread[icon]...if I do this /forums/$thread[icon] then all the threads on the latest threads column show /forums/ in front of the title of the thread. What's so weird is that everything there seems to be "relative" and works fine...all but the icons. Now, I can have it looking nice & pretty if I just don't select an icon (because I left the default icon url empty when I installed this again), but I don't want to. I want the icons to work...So, right now I am looking inside the actual "index.php" page to see what else I may try to do.

not exactly forget about templates. when you go to styles manager do not click nothing bet go that will take you to main style options like colors, style width and such there you should have the correct folder. Also go the the icon manager and smile manager and see what the folders there are i have mine set to /forums/.... there also.

digitalSite 01-26-2004 04:45 AM

Copy what corresponding folders? You mean upload all the smileys again? I've done that a few times already. I just finished deleting vbAdv again and reinstalling it. Then I went through all the icons and clicked the checkbox so they are all updated.

All my smileys and icons in the forum display with no problems. The problem is only on the vbAdvanced index page. It just doesn't want to look into the /forums/ folder and just goes straight to /images/

In admincp there are paths to every image folder except for icons ??? It would have made life so much easier if there was an "icons" folder and I could just define it there...am I missing it? Because I don't see it in admin cp. <sigh>

digitalSite 01-26-2004 04:48 AM

Quote:

Originally Posted by CarolinaKid
not exactly forget about templates. when you go to styles manager do not click nothing bet go that will take you to main style options like colors, style width and such there you should have the correct folder. Also go the the icon manager and smile manager and see what the folders there are i have mine set to /forums/.... there also.

Yup...already went to "Post Icons" area a few times and checked the path of every icon there. Any other ideas? lol. Did the admincp Styles & Templates thing last night. All have correct path to /forums/images/ etc.

Updated counters a few hundred times already, clicking on every single process.
Deleted my cache from computer (thinking it may be just me), deleted Temp Internet files, deleted cookies, rebooted computer, etc. Still...icons that seem fine in the "News" area on my forum, don't want to show on the front page.

There HAS to be something I am missing.

Where can I find out what is inside 'iconpath'?
Code:

else
                        {
                                $thread['iconpath'] = $iconcache["$thread[iconid]"]['iconpath'];
                                $thread['icontitle'] = $iconcache["$thread[iconid]"]['icontitle'];
                                $thread['icon'] = '<img src="' . $thread['iconpath'] . '" border="0" alt="' . $thread['icontitle'] . '" />';
                        }


Zachery 01-26-2004 04:56 AM

Quote:

Originally Posted by digitalSite
Yup...already went to "Post Icons" area a few times and checked the path of every icon there. Any other ideas? lol. Did the admincp Styles & Templates thing last night. All have correct path to /forums/images/ etc.

Updated counters a few hundred times already, clicking on every single process.
Deleted my cache from computer (thinking it may be just me), deleted Temp Internet files, deleted cookies, rebooted computer, etc. Still...icons that seem fine in the "News" area on my forum, don't want to show on the front page.

There HAS to be something I am missing.

i dont see how its possible to be honestsly

digitalSite 01-26-2004 05:00 AM

Right, that's what I'm saying. You can go here and see my site:
[edited]
You will see the broken icons...I will add a few more test posts.

Faranth, if you want, log back into my site and you update the counters or whatever, then refresh my page and you'll see that it stays as a broken image. I have ran out of ideas. :(

Zachery 01-26-2004 05:02 AM

imo the quick fix would be to remove $thread[icon] as i dont think there entiry nessary or copy the folders into the corospodnig locations

CarolinaKid 01-26-2004 05:07 AM

Quote:

Originally Posted by digitalSite
Yup...already went to "Post Icons" area a few times and checked the path of every icon there. Any other ideas? lol. Did the admincp Styles & Templates thing last night. All have correct path to /forums/images/ etc.

Updated counters a few hundred times already, clicking on every single process.
Deleted my cache from computer (thinking it may be just me), deleted Temp Internet files, deleted cookies, rebooted computer, etc. Still...icons that seem fine in the "News" area on my forum, don't want to show on the front page.

There HAS to be something I am missing.

Where can I find out what is inside 'iconpath'?
Code:

else
                        {
                                $thread['iconpath'] = $iconcache["$thread[iconid]"]['iconpath'];
                                $thread['icontitle'] = $iconcache["$thread[iconid]"]['icontitle'];
                                $thread['icon'] = '<img src="' . $thread['iconpath'] . '" border="0" alt="' . $thread['icontitle'] . '" />';
                        }


/admincp/image.php?do=modify&table=icon all urls should be /forums/images/icons/xxxx
then check admin options>>sitename/url/contact info and make sure forums url is http://www.site.com/forums and make sure homepage url is http://www.site.com
I am using rc3 and this set up and all works fine. Also check Vboptions>>thread dispaly options(showthread) and make sure default thred icon is set to /forums/images/icons/xxxx

(note replae xxxx in both places with image name such as icon1.gif, also replace www.site.com ith ur domain name.)

this is where ur url is pointing http://www.dstcentral.com/images/icons/icon5.gif
is icon5.gif ur default icon if so follow directions about to fix

digitalSite 01-26-2004 05:29 AM

Thanks all for your help and suggestions :)

CarolinaKid, I followed your instructions and all my settings were set and still no difference.
I did notice that the default icon works only if no "news" has an icon, and that if I "CHOOSE" an icon, it will show broken.

So in summary, I guess my forum is "different", lol and requires me not to choose an icon.

Thank you again Faranth...I may just delete the icon thingy, or just not put an icon and let the default icon take care of it for me.

THANKS ALL! :)

juno 01-26-2004 06:00 AM

quick fix for icons on front page:

create a replacement variable that

Searches for: images/icons
replaces with: forums/images/icons

**edit**
damn, but that breaks your forum icons.. grrr

digitalSite 01-26-2004 06:08 AM

Didn't work for me...

For whatever reason, I tried to post in my forum and icons were broken.
Their path were all: /forums/forums/images/icons

GameMania 01-26-2004 08:00 AM

i've some problem with the the tables on the index-site...

clicke here to see to problem...

can anyone help me please???

thanks... :)

Zachery 01-26-2004 08:11 AM

Quote:

Originally Posted by digitalSite
Didn't work for me...

For whatever reason, I tried to post in my forum and icons were broken.
Their path were all: /forums/forums/images/icons

try ./forums/images/icons

looks like you tried to add somthing or have somthing else installed into the navbar

TheEDIGuy 01-26-2004 11:14 AM

Quote:

Originally Posted by TheEDIGuy
The supermod is able to add things to the calendar just fine. But the items that the supermod adds to the calendar don't show on the front page (they do not cause a clickable link under the day in the mini-calendar). Only items that *I* add produce the clickable link.

If you look at the calendar, however, everything shows, regardless of who added it.

Sample at http://www.fansofrealitytv.com

Cali, a supermod, has added most of the items except for the one item I (the admin) added on the 22nd, which has produced the only clickable link (even though every single day has calendar items).

A little more information on this, with some screen captures to help explain...

Picture 1: The actual calendar in the forum's calendar page, with all links to all events.

Picture 2: The calendar on the front page, with only the link to the event I added myself on the 22nd.

Picture 3: My event on the 22nd.

Picture 4: One of Cali's public events on the 23rd that doesn't show on the front page. She's a supermod, userid=3, and is adding events to calendar #1 like me.

http://www.fansofrealitytv.com/forum...g/vba_cal1.jpg

http://www.fansofrealitytv.com/forum...g/vba_cal2.jpg

http://www.fansofrealitytv.com/forum...g/vba_cal3.jpg

http://www.fansofrealitytv.com/forum...g/vba_cal4.jpg

dandanfireman 01-26-2004 12:03 PM

Please forgive the newbie question. This may be more vB than vbadv related, but the issue is more pronounced with vbadv. How can I force vbadv page to take up more of the page? With the 3 columns, the center column showing the news is rather narrow. How can I make this bigger/wider?

Zachery 01-26-2004 12:11 PM

its a style issue

id suggest taking a look at the gamma release thread at vbulletin.com

alain4ever 01-26-2004 01:08 PM

hi

i have install this hack on my vb3.0.0 rc1 and it works fine.... but after upgrade my vb to rc3 and try to use the hack every thing work fine exept news, when i try to set forum news number i got an error, i try to uninstall and reinstall it 2 times but i got the same error....

Code:

Database error in vBulletin 3.0.0 Release Candidate 3:

Invalid SQL: SELECT thread.threadid, thread.title, replycount, postusername, postuserid, thread.dateline, IF(views<=replycount, replycount+1, views) AS views, forumid, thread.iconid, votenum, votetotal, post.postid, pagetext, allowsmilie, showsignature
                          , avatarpath, NOT ISNULL(avatardata) AS hascustom, customavatar.dateline AS avatardateline 
                          ,thread.iconid
                          ,attachment.filename, filesize, attachment.visible, attachmentid, counter, thumbnail, LENGTH(thumbnail) AS thumbnailsize
                                FROM thread AS thread
                                LEFT JOIN post AS post ON (post.postid = thread.firstpostid)
                                LEFT JOIN user AS user ON (user.userid = post.userid)
                                LEFT JOIN avatar as avatar ON (avatar.avatarid = user.avatarid)
                                LEFT JOIN customavatar as customavatar ON (customavatar.userid = user.userid) 
                                LEFT JOIN attachment AS attachment ON (post.postid = attachment.postid)
                                WHERE forumid IN(76)
                                GROUP BY post.postid
                                ORDER BY dateline DESC, attachmentid LIMIT 5
mysql error: Column: 'filesize' in field list is ambiguous

mysql error number: 1052

Date: Monday 26th of January 2004 09:02:42 AM


Tigga 01-26-2004 01:27 PM

AutomatikStudio - Go to your icon manager in your Admin CP, modify one of the icons, and save it. You don't actually have to change anything there, but just save the icon. That should update the icon cache for all of them and fix the problem with the icons.
As for the PM problem - Are you running the most current version of this script? That was an issue in one of the earlier versions, but was fixed. Did you by chance replace $index_footer with $footer in your index template? If so, that could also be the cause.

rinkrat - Something like that would be fairly easy to do with conditionals. Just find the beginning <td> tag for the column you would like to disable, and add <if condition"!$page"> before that, and then </if> after the ending </td> tag.

13th_Disciple - I'm *hoping* to have the site up sometime this week. I'll be leaving for Cincinnati this Thursdsay though, so I haven't decided if it would be best to wait until after I get back or not. With Faranth around though, I may just leave him in charge while I'm away. ;)

digitalSite - If you add conditionals around the blocks you don't want guests to be able to see then that should fix the problem... Ex <if condition="$bbuserinfo[userid]">
As for the images - See my first response in this post.

TheEDIGuy - Could you possibly provide me with a temporary admin account at your forum, and FTP access to your site as well? I'm honestly not sure why the calendar would behave like that, but if you could PM me with that info I'll gladly take a look and see if I can figure out what the problem is.

FastAttack - I tried registering on your site to see what the problem is with the avatar, but apparently you turned that option off. Can you tell me what URL it's pointing at for your avatar? Are you using a default one from your site, a custom one that's been uploaded, or did you enter the URL for it?

Milhouse - See my first response in this post. ;)

GameMania - Remove the quote from your news post, or change your "News Maximum Characters" setting to a higher number so the ending quote tag will be included in the post.

alain4ever - Open your adv_index.php file and look for "filesize," (without the quotes) and change that to "attachment.filesize," (again, wthout the quotes).

Zachery 01-26-2004 01:41 PM

Quote:

Originally Posted by Tigga
AutomatikStudio - Go to your icon manager in your Admin CP, modify one of the icons, and save it. You don't actually have to change anything there, but just save the icon. That should update the icon cache for all of them and fix the problem with the icons.
As for the PM problem - Are you running the most current version of this script? That was an issue in one of the earlier versions, but was fixed. Did you by chance replace $index_footer with $footer in your index template? If so, that could also be the cause.

rinkrat - Something like that would be fairly easy to do with conditionals. Just find the beginning <td> tag for the column you would like to disable, and add <if condition"!$page"> before that, and then </if> after the ending </td> tag.

13th_Disciple - I'm *hoping* to have the site up sometime this week. I'll be leaving for Cincinnati this Thursdsay though, so I haven't decided if it would be best to wait until after I get back or not. With Faranth around though, I may just leave him in charge while I'm away. ;)

digitalSite - If you add conditionals around the blocks you don't want guests to be able to see then that should fix the problem... Ex <if condition="$bbuserinfo[userid]">
As for the images - See my first response in this post.

TheEDIGuy - Could you possibly provide me with a temporary admin account at your forum, and FTP access to your site as well? I'm honestly not sure why the calendar would behave like that, but if you could PM me with that info I'll gladly take a look and see if I can figure out what the problem is.

FastAttack - I tried registering on your site to see what the problem is with the avatar, but apparently you turned that option off. Can you tell me what URL it's pointing at for your avatar? Are you using a default one from your site, a custom one that's been uploaded, or did you enter the URL for it?

Milhouse - See my first response in this post. ;)

GameMania - Remove the quote from your news post, or change your "News Maximum Characters" setting to a higher number so the ending quote tag will be included in the post.

alain4ever - Open your adv_index.php file and look for "filesize," (without the quotes) and change that to "attachment.filesize," (again, wthout the quotes).

figures you post while im shaving, check your email if you havent done so plus the boards at vba :)

AutomatikStudio 01-26-2004 01:48 PM

Quote:

Originally Posted by Tigga
As for the PM problem - Are you running the most current version of this script? That was an issue in one of the earlier versions, but was fixed. Did you by chance replace $index_footer with $footer in your index template? If so, that could also be the cause.

I downloaded this hack Friday...so unless you have updated it since then, then I have the most recent version. And yes I did replace $index_footer with $footer...do I need to switch them back?

Zachery 01-26-2004 01:48 PM

Quote:

Originally Posted by AutomatikStudio
I downloaded this hack Friday...so unless you have updated it since then, then I have the most recent version. And yes I did replace $index_footer with $footer...do I need to switch them back?

yes

M.C. 01-26-2004 01:49 PM

Quote:

Open your adv_index.php file and look for "filesize," (without the quotes) and change that to "attachment.filesize," (again, wthout the quotes).
Thanks a lot! Finally solve my problem! Thanks one more time! Good Luck!

Tigga 01-26-2004 01:51 PM

Faranth - I believe the last email I received from you was on 1/22, which I replied to... Have you sent any since then? Going to check vBa.com now. :)

AutomatikStudio - Yep, that's what's creating the problem then. You'll need to put the $index_footer variable back in your index template for the pm pop-up to work properly.

Zachery 01-26-2004 01:52 PM

Quote:

Originally Posted by Tigga
Faranth - I believe the last email I received from you was on 1/22, which I replied to... Have you sent any since then? Going to check vBa.com now. :)

AutomatikStudio - Yep, that's what's creating the problem then. You'll need to put the $index_footer variable back in your index template for the pm pop-up to work properly.

well crap i thought i had sent another one out, must be my lack of sleep or sumthing ^^

digitalSite 01-26-2004 03:13 PM

Quote:

Originally Posted by Tigga
digitalSite - If you add conditionals around the blocks you don't want guests to be able to see then that should fix the problem... Ex <if condition="$bbuserinfo[userid]">
As for the images - See my first response in this post.

OMG, thank you VERY VERY much Tigga!!! My icons FINALLY work! Ha! I knew it was something easy because I couldn't figure it out after ALL that drama.

I went to my Admin CP and edited my smilies and Post Icons. Now they show up correctly on my home page. THANKS! :D:D:D

digitalSite 01-26-2004 03:48 PM

Quick question:

How do I create a page and then have it show up on the front page in place of the news forum when I click on a link?
Thanks!

Zachery 01-26-2004 04:09 PM

Quote:

Originally Posted by digitalSite
OMG, thank you VERY VERY much Tigga!!! My icons FINALLY work! Ha! I knew it was something easy because I couldn't figure it out after ALL that drama.

I went to my Admin CP and edited my smilies and Post Icons. Now they show up correctly on my home page. THANKS! :D:D:D

didnt i saw to do that the first time?

Sergio68 01-26-2004 04:15 PM

Quote:

Originally Posted by digitalSite
Quick question:

How do I create a page and then have it show up on the front page in place of the news forum when I click on a link?
Thanks!


Editing the Index template and paying attention ;)

digitalSite 01-26-2004 04:16 PM

Quote:

Originally Posted by Faranth
didnt i saw to do that the first time?

From my understanding before, I was told to edit the paths to the smileys and icons...I already had the correct paths. From my current understanding, I was told to just press save in the icons/smiley section so that the iconcache could update.

If I misunderstood you before Faranth, I apologize :) I appreciate all your help! :D Thanks!

digitalSite 01-26-2004 04:26 PM

Quote:

Originally Posted by Sergio68
Editing the Index template and paying attention ;)

Hehe..thanks...do you know how or where I can find that information?

I am confused about how to "link" it so that it can show up in the middle area. :ermm:

Tigga 01-26-2004 04:34 PM

Did you read the info about the extra pages feature in the readme? It should be fairly easy to understand... Just create a new template called index_links (just for example purposes), then your link to that page would look like http://yoursite.com/index.php?page=links
And I believe Faranth did say to modify the icons and check their paths, but saving one is what actually makes the change. The icons are stored in a cache for vB3 and whenever one is modified then the cache is updated. I should have added the code to update the cache in the install file, but that was something I accidentally overlooked. That has been fixed for the next version though. :)

digitalSite 01-26-2004 04:41 PM

Thank you...I guess working quickly on 3 hours sleep doesn't help much, lol. Sorry Faranth for not understanding what you had told me already!

What's weird was that I did change the display order and saved it before, but that didn't work at the time...I had a big mess with files and stuff all over the place and have slowly updated everything and it works fine now! I knew not to give up on this hack - i knew it was me because I said I'm missing something before, lol.

My site is looking awesome already with Faranth's initial setup! :D

My site: http://www.dstcentral.com/adv_index.php (temporary address)

proxyMX 01-26-2004 05:24 PM

no one have any clues on my old problem that my forums are already in the root folder and i cant rename the index to index.php as it will over-write my vbulletin index!

Tigga 01-26-2004 05:28 PM

There's an option somewhere to change the name of your forum's main page. Just change that. ;)

digitalSite 01-26-2004 05:34 PM

Question:
I created index_about.php and it is currently in root dir.
My link is: http://www.dstcentral.com/adv_index.php?page=about
but text is not showing...

What is the format of the template? Like, does it have to have php tags at the top and bottom? html tags? or just begin the about page with a table?

Tigga 01-26-2004 05:40 PM

Why did you create a new file? There's no need for that, just a new template. All you put in the template is the content you would like to appear in the middle, so starting with a table would probably be the best. ;)

FastAttack 01-26-2004 05:43 PM

Quote:

Originally Posted by Tigga
AutomatikStudio - Go to your icon manager in your Admin CP, modify one of the icons, and save it. You don't actually have to change anything there, but just save the icon. That should update the icon cache for all of them and fix the problem with the icons.
As for the PM problem - Are you running the most current version of this script? That was an issue in one of the earlier versions, but was fixed. Did you by chance replace $index_footer with $footer in your index template? If so, that could also be the cause.

rinkrat - Something like that would be fairly easy to do with conditionals. Just find the beginning <td> tag for the column you would like to disable, and add <if condition"!$page"> before that, and then </if> after the ending </td> tag.

13th_Disciple - I'm *hoping* to have the site up sometime this week. I'll be leaving for Cincinnati this Thursdsay though, so I haven't decided if it would be best to wait until after I get back or not. With Faranth around though, I may just leave him in charge while I'm away. ;)

digitalSite - If you add conditionals around the blocks you don't want guests to be able to see then that should fix the problem... Ex <if condition="$bbuserinfo[userid]">
As for the images - See my first response in this post.

TheEDIGuy - Could you possibly provide me with a temporary admin account at your forum, and FTP access to your site as well? I'm honestly not sure why the calendar would behave like that, but if you could PM me with that info I'll gladly take a look and see if I can figure out what the problem is.

FastAttack - I tried registering on your site to see what the problem is with the avatar, but apparently you turned that option off. Can you tell me what URL it's pointing at for your avatar? Are you using a default one from your site, a custom one that's been uploaded, or did you enter the URL for it?

Milhouse - See my first response in this post. ;)

GameMania - Remove the quote from your news post, or change your "News Maximum Characters" setting to a higher number so the ending quote tag will be included in the post.

alain4ever - Open your adv_index.php file and look for "filesize," (without the quotes) and change that to "attachment.filesize," (again, wthout the quotes).

Tigga the code is still there now it won't show.. I thought I fixed it but now only the Post information shows.

everything is default.. I am guessing it has to do with where the index is located.. I double check though ;)

thanks!

alain4ever 01-26-2004 05:43 PM

Quote:

Originally Posted by Tigga

alain4ever - Open your adv_index.php file and look for "filesize," (without the quotes) and change that to "attachment.filesize," (again, wthout the quotes).

Thanks alot for reply:)

problem fixed :)


All times are GMT. The time now is 10:57 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02625 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
  • (6)bbcode_code_printable
  • (19)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)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