Go Back   vb.org Archive > Community Discussions > Forum and Server Management
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 12-01-2008, 07:33 PM
FockerFGAA FockerFGAA is offline
 
Join Date: Dec 2006
Posts: 113
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Queries clogging MySQL

Here are the queries that they said were running when our MySQL load goes to 100%. I can't really tell what is causing the issue because I don't have a clue what all that means, but it is something that isn't good im sure. Any help would be appreciated.

Quote:
Its your database that is clogging the MySQL server. Here are the current queries:

| 981040 | fvsports_Focker | localhost | fvsports_forum | Query | 102 | Copying to tmp table | SELECT item.item_id, item.item_title, item.threadid, grp.group_title, item.item_status, item.item_cr |
| 981103 | fvsports_Focker | localhost | fvsports_forum | Query | 74 | Locked | UPDATE footballthread SET
lastpost = 1228164584,
lastposter = 'riker7',
| lastpostid = 1225055,
| 981105 | fvsports_Focker | localhost | fvsports_forum | Query | 74 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1227732584 AND open <> 10, 1, 0)) AS newthread
|
| 981106 | fvsports_Focker | localhost | fvsports_forum | Query | 73 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 981113 | fvsports_Focker | localhost | fvsports_forum | Query | 67 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1227732590 AND open <> 10, 1, 0)) AS newthread
|
| 981116 | fvsports_Focker | localhost | fvsports_forum | Query | 67 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 981121 | fvsports_Focker | localhost | fvsports_forum | Query | 64 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 981125 | fvsports_Focker | localhost | fvsports_forum | Query | 62 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1227732596 AND open <> 10, 1, 0)) AS newthread
|
| 981127 | fvsports_Focker | localhost | fvsports_forum | Query | 59 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


NOT ISNULL(subscribethread.subscribethreadid) AS |
| 981128 | fvsports_Focker | localhost | fvsports_forum | Query | 59 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1227732599 AND open <> 10, 1, 0)) AS newthread
|
| 981137 | fvsports_Focker | localhost | fvsports_forum | Query | 54 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 981143 | fvsports_Focker | localhost | fvsports_forum | Query | 51 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 981151 | fvsports_Focker | localhost | fvsports_forum | Query | 43 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


NOT ISNULL(subscribethread.subscribethreadid) AS |
| 981152 | fvsports_Focker | localhost | fvsports_forum | Query | 42 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,



thread.*


FROM footballthread AS th |
| 981158 | fvsports_Focker | localhost | fvsports_forum | Query | 37 | Locked | SELECT
reputation.whoadded, reputation.postid, reputation.reputation, reputation.reason, reputati |
| 981167 | fvsports_Focker | localhost | fvsports_forum | Query | 33 | Locked | SELECT *, thread.title AS threadtitle
FROM footballrsslog AS rsslog
INNER JOIN footballrssfeed AS |
| 981178 | fvsports_Focker | localhost | fvsports_forum | Query | 30 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1227732628 AND open <> 10, 1, 0)) AS newthread
|
| 981185 | fvsports_Focker | localhost | fvsports_forum | Query | 25 | Locked | UPDATE footballuser
SET lastactivity = 1228164632
WHERE userid = 733 |
| 981208 | fvsports_Focker | localhost | fvsports_forum | Query | 13 | Locked | SELECT
userfield.*, usertextfield.*, user.*, UNIX_TIMESTAMP(passworddate) AS passworddate, user. |
| 981231 | fvsports_Focker | localhost | fvsports_forum | Query | 3 | Locked | SELECT
userfield.*, usertextfield.*, user.*, UNIX_TIMESTAMP(passworddate) AS passworddate, user. |
| 981234 | fvsports_Focker | localhost | fvsports_forum | Query | 1 | Locked | SELECT
user.username, (user.options & 512) AS invisible, user.usergroupid,
Reply With Quote
  #2  
Old 12-03-2008, 03:29 AM
FockerFGAA FockerFGAA is offline
 
Join Date: Dec 2006
Posts: 113
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this shit is driving me insane. i just want it to run smoothly yet i have queries causing a lock up and i cant tell what. im really getting frustrated by all this.
Reply With Quote
  #3  
Old 12-03-2008, 03:56 AM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Do a search in your files for parts of those queries. I assume you have a copy of the full query, so it will be easier for you to search for them and locate the correct ones. But, usually it isn't those queries that are the problem - it's the query performed right before them that locked the tables that is the problem. Check the times on these and see if they show up at the same time - perhaps a cron job/scheduled task is being run that is causing the problem.
Reply With Quote
  #4  
Old 12-03-2008, 04:07 AM
FockerFGAA FockerFGAA is offline
 
Join Date: Dec 2006
Posts: 113
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

im not sure which files you mean i should do searches in? and is there a good program to do a search in multiple files? i checked my raw access logs and basically i get these

Quote:
"GET /forum/transparent HTTP/1.1" 404 649 "http://www.fvsports.com/forum/usercp.php" "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3"
constantly. i get error logs filled with forum/transparent file does not exist. it isnt in any my templates so now im going to check files but there has to be a way to check them faster than one at a time.

and as for the queries, i only have the information they give me. i dont really have access to a lot of stuff (im a semi dedicated). that was just what the techs send me whenever i messaged support.

--------------- Added [DATE]1228284748[/DATE] at [TIME]1228284748[/TIME] ---------------

sigh. think this is something i could hire someone through the paid services to do? this is just so frustrating. we dont have a high traffic board, but ive invested a lot of time trying to make it run properly. i know im limited at what i can do with a semi dedicated, but there has to be something. maybe a bad table in the database (i used repair and analyze and got nothing)? maybe an old mod gone bad (but ive tried to make sure i remove all lines of code that i changed when i uninstall a mod)
Reply With Quote
  #5  
Old 12-03-2008, 04:16 AM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I use BBEdit to search all files in a folder. That is for a Mac. I've sure there are similar applications for the PC.

And what I was talking about was finding the query so you can figure out what is happening when it's called. You would search for part of the query like "IF(visible = 2, 1, 0) AS isdeleted" (I think that one is from functions.php getting threadinfo). But, as I said, I don't think that will help because those are the queries having problems *because* the table is locked. You need to find out *why* the table is locked and whatever is doing that is doing it right before those queries. So, you should see if you can get the times of the problem queries and see if it is always happening at the same time and then figure out what is going on on your forum at those times.

As for /transparent, I would guess it is a modification causing that problem because it isn't a default vbulletin thing. So, you need to look through your plugins for that one (although I think I've seen it mentioned before, so perhaps a search here and reading a few threads will tell you what modification it is).
Reply With Quote
  #6  
Old 12-03-2008, 04:25 AM
FockerFGAA FockerFGAA is offline
 
Join Date: Dec 2006
Posts: 113
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well I went through the scheduled tasks in my admin panel and the only task that was set for more than twice an hour was an RSS deal. I disabled that since I don't have any RSS stuff currently anyways, but it is occurring right now about once every 5 minutes or so. It will do this for around an hour usually (sometimes longer) and then it will run smoothly for a few hours. Sometimes it won't do it for days and a few times even weeks and then sometimes its every other hour.
Reply With Quote
  #7  
Old 12-03-2008, 04:27 AM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How much access to the server do you have? If you are able to change your php.ini and my.cnf, then I would suggest posting on vb.com in the Server Configuration forum to see if they can help fine tune your server.
Reply With Quote
  #8  
Old 12-03-2008, 04:38 AM
FockerFGAA FockerFGAA is offline
 
Join Date: Dec 2006
Posts: 113
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lynne View Post
How much access to the server do you have? If you are able to change your php.ini and my.cnf, then I would suggest posting on vb.com in the Server Configuration forum to see if they can help fine tune your server.
no access to those. i mean would i be better served moving to a vps? i just dont see the reason to move to a full dedicated though i would have full access. i just dont have the users to justify a full dedicated server

--------------- Added [DATE]1228286407[/DATE] at [TIME]1228286407[/TIME] ---------------

this is what they just posted to me again

Quote:
==========================
+--------+-----------------+-----------+----------------+---------+------+----------------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+--------+-----------------+-----------+----------------+---------+------+----------------------+------------------------------------------------------------------------------------------------------+
| 179114 | larshqc_lscott | localhost | larshqc_adspy | Sleep | 2 | | |
| 180105 | fvsports_Focker | localhost | fvsports_forum | Query | 24 | Copying to tmp table | SELECT item.item_id, item.item_title, item.threadid, grp.group_title, item.item_status, item.item_cr |
| 180112 | fvsports_Focker | localhost | fvsports_forum | Query | 8 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,



thread.*


FROM footballthread AS th |
| 180119 | fvsports_Focker | localhost | fvsports_forum | Query | 9 | Locked | UPDATE footballthread SET firstpostid = 1228081, lastpostid = 1228081 WHERE threadid = 84795 |
| 180122 | alicia_gallery | localhost | alicia_gallery | Sleep | 0 | | |
| 180123 | root | localhost | | Query | 0 | | show processlist |
+--------+-----------------+-----------+----------------+---------+------+----------------------+------------------------------------------------------------------------------------------------------+
[root@eowyn ~]# mysqladmin processlist
+--------+-----------------+-----------+----------------+---------+------+----------------------+------------------------------------------------------------------------------------------------------+
| Id | User | Host | db | Command | Time | State | Info |
+--------+-----------------+-----------+----------------+---------+------+----------------------+------------------------------------------------------------------------------------------------------+
| 180105 | fvsports_Focker | localhost | fvsports_forum | Query | 194 | Copying to tmp table | SELECT item.item_id, item.item_title, item.threadid, grp.group_title, item.item_status, item.item_cr |
| 180112 | fvsports_Focker | localhost | fvsports_forum | Query | 178 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,



thread.*


FROM footballthread AS th |
| 180119 | fvsports_Focker | localhost | fvsports_forum | Query | 179 | Locked | UPDATE footballthread SET firstpostid = 1228081, lastpostid = 1228081 WHERE threadid = 84795 |
| 180124 | fvsports_Focker | localhost | fvsports_forum | Query | 168 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 180126 | fvsports_Focker | localhost | fvsports_forum | Query | 166 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 180127 | fvsports_Focker | localhost | fvsports_forum | Query | 163 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1227853995 AND open <> 10, 1, 0)) AS newthread
|
| 180131 | fvsports_Focker | localhost | fvsports_forum | Query | 155 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,



thread.*


FROM footballthread AS th |
| 180134 | fvsports_Focker | localhost | fvsports_forum | Query | 148 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1227854009 AND open <> 10, 1, 0)) AS newthread
|
| 180136 | fvsports_Focker | localhost | fvsports_forum | Query | 145 | Locked | SELECT
reputation.whoadded, reputation.postid, reputation.reputation, reputation.reason, reputati |
| 180141 | fvsports_Focker | localhost | fvsports_forum | Query | 140 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1228286015 AND open <> 10, 1, 0)) AS newthread
|
| 180143 | fvsports_Focker | localhost | fvsports_forum | Query | 140 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 180150 | fvsports_Focker | localhost | fvsports_forum | Query | 134 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 180157 | fvsports_Focker | localhost | fvsports_forum | Query | 130 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 180176 | fvsports_Focker | localhost | fvsports_forum | Query | 119 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 180180 | fvsports_Focker | localhost | fvsports_forum | Query | 115 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1228286015 AND open <> 10, 1, 0)) AS newthread
|
| 180185 | fvsports_Focker | localhost | fvsports_forum | Query | 105 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 180186 | fvsports_Focker | localhost | fvsports_forum | Query | 105 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 180192 | fvsports_Focker | localhost | fvsports_forum | Query | 94 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1227854064 AND open <> 10, 1, 0)) AS newthread
|
| 180196 | fvsports_Focker | localhost | fvsports_forum | Query | 87 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1228286015 AND open <> 10, 1, 0)) AS newthread
|
| 180199 | fvsports_Focker | localhost | fvsports_forum | Query | 83 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1227854075 AND open <> 10, 1, 0)) AS newthread
|
| 180202 | fvsports_Focker | localhost | fvsports_forum | Query | 67 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1228286015 AND open <> 10, 1, 0)) AS newthread
|
| 180204 | fvsports_Focker | localhost | fvsports_forum | Query | 57 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1227854101 AND open <> 10, 1, 0)) AS newthread
|
| 180211 | fvsports_Focker | localhost | fvsports_forum | Query | 51 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1227854107 AND open <> 10, 1, 0)) AS newthread
|
| 180215 | fvsports_Focker | localhost | fvsports_forum | Query | 46 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1228286015 AND open <> 10, 1, 0)) AS newthread
|
| 180219 | fvsports_Focker | localhost | fvsports_forum | Query | 40 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1228286109 AND open <> 10, 1, 0)) AS newthread
|
| 180220 | fvsports_Focker | localhost | fvsports_forum | Query | 39 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 180221 | fvsports_Focker | localhost | fvsports_forum | Query | 38 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1228286109 AND open <> 10, 1, 0)) AS newthread
|
| 180222 | fvsports_Focker | localhost | fvsports_forum | Query | 37 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 180224 | fvsports_Focker | localhost | fvsports_forum | Query | 37 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 180226 | fvsports_Focker | localhost | fvsports_forum | Query | 35 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 180229 | fvsports_Focker | localhost | fvsports_forum | Query | 33 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 180230 | fvsports_Focker | localhost | fvsports_forum | Query | 33 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


threadread.readtime AS threadread, forumread.read |
| 180233 | fvsports_Focker | localhost | fvsports_forum | Query | 27 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,



thread.*


FROM footballthread AS th |
| 180234 | fvsports_Focker | localhost | fvsports_forum | Query | 27 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1227854131 AND open <> 10, 1, 0)) AS newthread
|
| 180235 | fvsports_Focker | localhost | fvsports_forum | Query | 26 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1228286015 AND open <> 10, 1, 0)) AS newthread
|
| 180238 | fvsports_Focker | localhost | fvsports_forum | Query | 20 | Locked | SELECT thread.threadid
FROM footballthread AS thread

WHERE thread.forumid IN(50, 51, 18, 1 |
| 180239 | fvsports_Focker | localhost | fvsports_forum | Query | 17 | Locked | SELECT IF(visible = 2, 1, 0) AS isdeleted,


NOT ISNULL(subscribethread.subscribethreadid) AS |
| 180245 | fvsports_Focker | localhost | fvsports_forum | Query | 3 | Locked | SELECT COUNT(*) AS threads, SUM(IF(thread.lastpost > 1228286015 AND open <> 10, 1, 0)) AS newthread
|
| 180246 | root | localhost | | Query | 0 | | show processlist |
+--------+-----------------+-----------+----------------+---------+------+----------------------+------------------------------------------------------------------------------------------------------+
Reply With Quote
  #9  
Old 12-03-2008, 04:47 AM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

None of those tell me a thing. Like I said, those are problem queries because the table is locked and thus the queries can't be performed. The real problem is whatever is locking the tables. You need to start noting down the times and what is going on on your forum when this happens and then see if you can figure it out. Basically a near impossible task (believe me, I say that from experience!).

What you might want to do is turn off all your modifications. Leave them off for a couple of days and see if that fixes the problem. Then turn on a modification a day and keep seeing if the problem returns. Maybe that way you can figure out what modification is causing the problem and then disable it for good.
Reply With Quote
  #10  
Old 12-03-2008, 04:55 AM
FockerFGAA FockerFGAA is offline
 
Join Date: Dec 2006
Posts: 113
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ya I have been trying that. I will see what I can find out doing it. I told them that those queries weren't showing anything and if they had more info for me. I will see what I get.

--------------- Added [DATE]1228288183[/DATE] at [TIME]1228288183[/TIME] ---------------

and basically ive ruled out that the transparent deal is in any file or template (i found editplus that searches all files in a folder and subfolders) that has to deal with my forum. now i have to check to see about folders in my public_html i suppose
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 06:33 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07870 seconds
  • Memory Usage 2,284KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete