vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   WebTemplates 2.x: VB Integrated Content Management System (https://vborg.vbsupport.ru/showthread.php?t=54875)

Logician 02-04-2004 05:55 AM

Quote:

Originally Posted by cindyd
I need to know how to tie the new pages into the regular forum? Do I just set up a parent forum and list all the links? I know I could do that, but there must be another way.....I just don't know what to call what I want on a search.

I'm not sure what you mean by tie the webtemplates into the forum?

XtReMaTriX 02-10-2004 01:05 PM

Quote:

Originally Posted by Logician
Included vb templates do not work on headers. You have to add inside regular templates. So you'll add $WTT_templatename (of course rename "templatename" section in this variable!) inside your webtemplate that you want to inherit.

Or create a webtemplate header template and copy/paste your templates content into this one and then you can use this webtemplate header in your other webtemplates


I was rather confused by how you explained that.. Ok so I cant use VBTemplates in the header.. ok.

In the old version I created a VB Template called top and bottom, and put my layout and everything in there.

Is that how it should be done now? Or is there a better way??

I tried making a vbTemplate with all the values and adding that to the WebTemplate but nothing showed up... I would really appriciate some more help...

Logician 02-10-2004 06:47 PM

Quote:

Originally Posted by XtReMaTriX
I was rather confused by how you explained that.. Ok so I cant use VBTemplates in the header.. ok.

In the old version I created a VB Template called top and bottom, and put my layout and everything in there.

Is that how it should be done now? Or is there a better way??

I tried making a vbTemplate with all the values and adding that to the WebTemplate but nothing showed up... I would really appriciate some more help...

You have 2 options:
1- You can create header/footer Webtemplates. (or modify existing default ones). Then you can add your content there and you can use these header/footer webtemplates in other webtemplates.

2- You can create a regular vb template as you did. Then add its name in the "included vb template" part in your webtemplate edit page. Then add "$WTT_templatename" in your webtemplate and this template will show up in the location you put "$WTT_templatename". In this method, if you have more than 1 template sets, create your template in all template sets.

roxics 02-24-2004 08:30 AM

Quote:

Originally Posted by Logician from page 12
The structure won't be flexible so don't expect something fancy but here is a draft webquery: (Remember to replace X with threadid)

I've been playing around with this webquery and it's great. Here is an example:
http://www.visionengine.com/board/view.php?s=&pg=sound

But when you said it won't be flexible what exactly do you mean? The reason I'm asking is because I'm curious if it can do more.

Is there a way to get it to pull only the second post and beyond from a particular thread? Along with a "post reply" link (image and all) to that thread?


Second query
Is there a way to pull only the first post from a given thread? With username, avatar, edit link, homepage link, profile link. Pretty much everything from the postbit.

The reason is because I'm looking for an easy way for members to contribute articles. Most don't know HTML and send me word documents I have to format into simple HTML. It's a pain. They are used to using the board. Plus that way there is a copy of the article on the board.

If there is anyway to make these two queries work togther that would be even better.

Highlander 02-25-2004 10:37 AM

Hi Logocian,

i used the first version too .. and it wored fine.. but now i changed to this version.. witrh a news install of my board.. and have this error when i visit our TEST template :(

http://spielplanet2.de/forums/view.php?pg=test

can you help me?

roxics 02-25-2004 05:59 PM

Can someone help me with this. I'm trying to get the next 10 events for the next ten days on the calendar to show on this page. But I'm pretty clueless as to what I'm doing.

Here is the page:
http://www.visionengine.com/board/view.php?s=&pg=events

Here is my query
PHP Code:

SELECT *
FROM calendar_events
WHERE 
public = AND eventdate >= +10()
ORDER BY eventdate LIMIT 10 

Here is my query result row

PHP Code:

<table border='0' cellspacing='0' cellpadding='0' width='100%'>
<
tr><td bgcolor='#000000' width='100%' height="0" 
<
table width='100%' border='0' cellspacing='1' cellpadding='3'>
<
tr>
<
td bgcolor='#cecfce' width='100%'>
      <
div align="left">
<
font style="FONT-FAMILY: Verdana, MS Sans Serif;FONT-SIZE: 10pt;"><b>Event</b$WQfield[subject]<br>
<
font style="FONT-FAMILY: Verdana, MS Sans Serif;FONT-SIZE: 10pt;"><b>From 
       
:</b> <a href="$bburl/member.php?s=&action=getinfo&userid=$WQfield[postuserid]">$WQfield[username]</a></div>
      <
div align="right"><font style="FONT-FAMILY: Verdana, MS Sans Serif;FONT-SIZE: 8pt;"><b>Date:</b$WQfield[eventdate]</div></td>
</
tr>
<
tr
     <
td bgcolor='#F1F1F1' width='100%' height="5" align='left'
      <
font style="FONT-FAMILY: Verdana, MS Sans Serif;FONT-SIZE: 10pt;"
      
$WQfield[event]</font> </td>
</
tr>
</
table>
</
td>
</
tr>
</
table>
<
br

On top of that I can't seem to get the username to show up. Or manage to get it so the event information is formatted properly.

Logician 02-25-2004 06:42 PM

Quote:

Originally Posted by Highlander
Hi Logocian,

i used the first version too .. and it wored fine.. but now i changed to this version.. witrh a news install of my board.. and have this error when i visit our TEST template :(

http://spielplanet2.de/forums/view.php?pg=test

can you help me?

Your PHP version is old. Either upgrade it or change all instances of "array_key_exists" in the script as "key_exists"

Logician 02-25-2004 06:46 PM

Quote:

Originally Posted by roxics
Can someone help me with this. I'm trying to get the next 10 events for the next ten days on the calendar to show on this page.

This wont work.. calendar dates in vb2 is not saved in a nice format to get via a webquery for future dates.

Highlander 02-25-2004 07:54 PM

found the error :D

<*YERAH**

everybdy who has PHP 4.0.6 has to find in view.php following code:

Code:

array_key_exists
replace with (think more than 18 times)
->with this please-> key_exists

Highlander 02-25-2004 07:55 PM

ahh okai.. you helped me out already while i searched the error .. lol .. anyway muchas grazias :D

Highlander 02-26-2004 04:38 AM

Hello Logician,

its me again and i read all posts in this thread.. before i figure out my quastion i have :D

If you have one minute to overview this .. i would be very happy ..

What i want to get done
You see this test Template i did .. it was work of 10 seconds :D
-> http://spielplanet2.de/forums/view.php?s=&pg=testone <-

i have in my forums .. espically these forums i showed up in this test template an news based posting style.. this means only news writer are allowed to start threads there, with uploading an image .. this News shows up like here .. www.spieleplanet.org/news.php ..you see i show the attachment file as simple link to attachment.php in IMG tags and the img is showing beside the topic title..

the same i want to get shown in a (for example) News WebTemplate .. this means not only the topic title should show up like here (http://spielplanet2.de/forums/view.php?s=&pg=testone) i also want to show up the attachment file (i only show up images) .. the thumbnailing is not my problem..the query itself is a problem to get the topic titel inclidiung the attachment image to show up..

Can you follow me?
My english is not always understandable :D .. sorry for that but you webtemplates are a better, faster and easier way to make a new News Based Website based on the forum .. with many oiptions i cozuld integrate .. your CMs is very mighty and i love it ..

i would marry you if you would be a nice looking girl *lol*

Highlander 02-27-2004 05:23 AM

Hi Logician,

You just heard this maybe thousand times .. but i want you to know that this thing is the right thing i am searching for over one year for my web study :D .. i managed a whole bunch of finishing projects with this hack :D

i cant believe that everything is just getting exactly as i want :D

and i cant wait to get from work to work on this new spieleplanet project :D

..okai .. that should be enough for you wounded fingers .. how many keybords did you crashed until you finished this hack ..hehe :D

Project Example (still not Finished)
http://spielplanet2.de/forums/view.p...lpha_news_v0_2

Question (planned features)
- how to migrate the search field? Can you give me an tip?
- How to migrate attachemnts from (for exapmple) listed threads you see on the example page link?

If you find time for this (just for me important) things .. it would be nice.. otherwise i am testing also till i find it out..

vBulletin 3 support
Just leave it alone *smile* i dont need it also and your hacks make an vb2.* more eficient than the naked vb3.*
One day maybe i have to start with the upgrade.. but everything is working better than fine .. and you know "never touch a running system"

Greetings from germany (Frankfurt)
Highlander
www.spieleplanet.org/forums
http://spielplanet2.de/forums/view.p...lpha_news_v0_2

NORRITT 02-28-2004 12:48 PM

hello,

I have some questions for modifying that great hack.

1. I know it is not supportet, but what have I to modify to use view.php in an other directory? (instead of site.com/forum/view.php I would like to see it in site.com/view.php)

2. How can I get templates generated by the vbhome lite hack working in the THEMES (Parent WebTemplates)? I would like to include:
- home_loggedinusers
- home_newposts
- home_userloggedin
- home_userloggedout
- home_threadbit
- home_welcomeguest
- home_welcomeuser

3. How can I use WebQuery to show all (or latest 5) headlines of all Webtemplates created for a category? How can I show all headlines of all categories? The Headlines should be links to the full Artikle (Webtemplate page).

thank you a lot
lukas

GoTTi 03-02-2004 02:44 AM

log, you got any movement on making this work with vb3 yet?

NORRITT 03-02-2004 10:04 AM

Hello friends,

I got my 1. question solved on my own: just copied the view.php into my root directory and changed every path ./admin/.... into forum/admin/....

Can anyone help me with 2 and 3?

lukas

Highlander 03-04-2004 05:21 AM

Hi there

have an problem creating a webtemplate including informations like this:

First i have this QUERY to find out the Threadid wich i can use in TABLE "Post" toi get the "postid" to get in the end the "attachmend_id" i can use to show up images :D

PHP Code:

$newsquery=$DB_site->query("SELECT threadid,title,replycount,postusername,postuserid,iconid,dateline FROM thread WHERE forumid='$newsforum' ORDER BY dateline DESC LIMIT $newsposts");
while (
$news=$DB_site->fetch_array($newsquery)) {
  
$newsthreadid=$news[threadid];
  
$newstitle=$news[title];
  
$newsicon=$news[iconid];
  
$newstime=vbdate($timeformat,$news[dateline]);
  
$newsdate=vbdate($dateformat,$news[dateline]);
  
$newsusername=$news[postusername];
  
$newsuserid=$news[postuserid];
  
$comments=$news[replycount]; 

So now i get the postid to search for to create an image with when one is attachend to a post (ex: attachment.php?s=$session[sessionhash]&postid=$postid)
PHP Code:

  $getnews=$DB_site->query_first("SELECT postid,pagetext,iconid FROM post WHERE threadid='$newsthreadid' ORDER BY postid ASC LIMIT 1");
  
$postid=$getnews[postid]; 

this are two queries to get an image out of a post a user makes :D
but how it seems with the webtemplates i can do only one query.. i dont know how to migrate this code into the qebqueries ?

please help me someone out with this.. i tried now for several days and did not manage this .. anyway i just need to show it up..

an working example with a *.php page i did here:
www.spielplanet2.de/news.php <- on the left site you see this code working.. and this option i just need to migrate into webtemplates..so i can turn off this news page and use webtemplates 100% for everything ..

Example of an early Alpha Layout of exisitng Webtemplates:
http://spielplanet2.de/forums/view.p...lpha_news_v0_2

JohnXWA 03-21-2004 04:54 PM

Logician,

I'm in major need of this hack to work with VB3 or i'm screwed. Is there a quick and dirty way to get it to play ball? I don't need the fancy features just plain html pages.

I have a over 200 hundred pages on WebTemplates I cannot afford to loose. VB3 is very stable, considering the extensive beta.

Thanks!

Logician 03-21-2004 05:21 PM

No promises but I am hoping to work on its VB3 version this month. I'm sorry to not to give you an alternative solution but your only way to save your 200 webtemplates would be using the VB3 version of this hack.

NORRITT 03-21-2004 05:37 PM

Logician, can you help me with the webquery and template questions:

1. How can I get templates generated by the vbhome lite hack working in the THEMES (Parent WebTemplates)? I would like to include:
- home_loggedinusers
- home_newposts
- home_userloggedin
- home_userloggedout
- home_threadbit
- home_welcomeguest
- home_welcomeuser

2. How can I use WebQuery to show all (or latest 5) headlines of all Webtemplates created for a category? How can I show all headlines of all categories? The Headlines should be links to the full Artikle (Webtemplate page).

Quote:

Originally Posted by Logician
No promises but I am hoping to work on its VB3 version this month. I'm sorry to not to give you an alternative solution but your only way to save your 200 webtemplates would be using the VB3 version of this hack.


JohnXWA 03-21-2004 05:45 PM

Quote:

Originally Posted by Logician
No promises but I am hoping to work on its VB3 version this month. I'm sorry to not to give you an alternative solution but your only way to save your 200 webtemplates would be using the VB3 version of this hack.

Cool,

I thought as it requires no editing of VB files it would be somethign quick and easy to get it going.

Thanks

Koutaru 03-21-2004 06:50 PM

Quote:

Originally Posted by Logician
No promises but I am hoping to work on its VB3 version this month. I'm sorry to not to give you an alternative solution but your only way to save your 200 webtemplates would be using the VB3 version of this hack.

Excellent. :) Thanks for the update!

Logician 03-22-2004 06:28 PM

Quote:

Originally Posted by NORRITT
1. How can I get templates generated by the vbhome lite hack working in the THEMES (Parent WebTemplates)? I would like to include:

Sorry I have no experience with vbhome.

Quote:

2. How can I use WebQuery to show all (or latest 5) headlines of all Webtemplates created for a category? How can I show all headlines of all categories? The Headlines should be links to the full Artikle (Webtemplate page).
This you can play with:
https://vborg.vbsupport.ru/showpost....9&postcount=40

Quote:

I thought as it requires no editing of VB files it would be somethign quick and easy to get it going.
Right no editing of vb files but the hack script itself is sophisticated. ;)

Also it occured to me that you may still have some bad time with your 200 webtemplates if they are HTML webtemplates that uses vb2 tags/replacements. Because as you know such webtemplates uses standarts of vb2 templates (like {pagebgcolor} tag) and they are obselete in vb3 so they need to be replaced with vb3 tags.

JohnXWA 03-23-2004 01:22 PM

Quote:

Originally Posted by Logician
Sorry I have no experience with vbhome.


This you can play with:
https://vborg.vbsupport.ru/showpost....9&postcount=40


Right no editing of vb files but the hack script itself is sophisticated. ;)

Also it occured to me that you may still have some bad time with your 200 webtemplates if they are HTML webtemplates that uses vb2 tags/replacements. Because as you know such webtemplates uses standarts of vb2 templates (like {pagebgcolor} tag) and they are obselete in vb3 so they need to be replaced with vb3 tags.

Hi,

No, my pages are standard HTML. To VB2 specific coding at all.

Thanks
John

JohnXWA 03-25-2004 07:38 PM

To the great Logician :D

[BEG Mode]
Do you have a rough idea on once you start work how long it will take to create the VB3 version?
[/BEG Mode]

Logician 03-25-2004 08:44 PM

[I AM SORRY MODE]
I would prefer not to give an ETA at this time so that I wouldn't hold responsible if I delay
[/I AM SORRY MODE]
;)

Highlander 03-28-2004 05:39 AM

Hi logician .. i tried it out and i will port all planned functions to webtemplates now :d

here is an example page :D
http://spielplanet2.de/forums/view.p...lpha_news_v0_2

everything seems to work fine .. but only 2 little not very important things a did not figure out :D

1. in the old webtemplates..there had been a webquery to show last 10 posts/theads of userX (userX means evry user see his own last posts/threads) like a personal control center ..
2. i need to query out 2 tables .. to make attachments visible as picture/link if i call out the query "show last Threads FROM forumid=2" .. so i would be able not to ashow only thread titels..of course its nice..but i just would like to show also the attachment made in the first post.. of our news forums

Example:
Thread 2345 has an attached image in Foruimd=23 -> it is possible to show up the attachment with a LEFT join in the query?

please help me out.. i read now 2 weeks evry hint in my sql books..but did not figure it our..maybe it isnt possible.. but if its possible i would like to implement the feature :D

greetings from germany

Logician 03-28-2004 12:41 PM

1- attached.
2- not possible

MeTaL_oRgY 03-28-2004 01:10 PM

Hi logician.. I pm?d u.. but I think I better ask here....
well.. I installed webtemplates just for one reason... I want pass-protected pages on my site. I?ve managed to have the login box on the page but when they log in they are re-directed to a re-directing page (lol) and then lead to the forum index. Is there anyway of having them redirected to the page index?? and after that is managed (if can be managed) how do I create pass-protected pages?

here?s my test page:
http://zelda.wi3k.net/test.php

thnx for ur time :)

Logician 03-28-2004 01:22 PM

Quote:

Originally Posted by MeTaL_oRgY
Hi logician.. I pm?d u.. but I think I better ask here....
well.. I installed webtemplates just for one reason... I want pass-protected pages on my site. I?ve managed to have the login box on the page but when they log in they are re-directed to a re-directing page (lol) and then lead to the forum index. Is there anyway of having them redirected to the page index?? and after that is managed (if can be managed) how do I create pass-protected pages?

here?s my test page:
http://zelda.wi3k.net/test.php

thnx for ur time :)

Your page is down and I couldn't understand the question either. Please clarify.

MeTaL_oRgY 03-28-2004 01:27 PM

it´s not down Oo.... I´m there right no Oo...

well... what I want is to create a section on my website, lets say... emulation, and have it pass protected so guests can´t see it. In order to acces the page the visitors must register to the forum and then they will be able to acces the emulation page. In addition to this, I want to have the login form on a part of my menu to save time... I created the test page with the login box template, but when they log-in they are redirected to the forum index and I want em to be redirected to the test page.....

I´ve seen some scripts that allow you to have a website database but I guess what I want to have is a Website and forum database all in one... so ppl don´t have to register twice.

hope I clarify it... my english is not too good XD....

again, thnx for ur time

Logician 03-28-2004 01:40 PM

I fail to see how this page is related to webtemplates hack. It looks like a page of "Logician News" hack. If you use a login box in a "webtemplate" (not logician news hack!), it is suppose to take you to that webtemplate after you login successfully.

MeTaL_oRgY 03-28-2004 01:43 PM

lol, yeah, it?s the logicians news hack, as it?s my test page, I use it for everything I want before adding to my website. Your news hack works great!! thnx for that one by the way!

if you see below the news, you?ll see the login box, that?s a webtemplate :).... and if you login it redirects to the forum and no to the test pagee, that?s what I don?t wnt :o... I dunno if it?s possible or no... :o

Logician 03-28-2004 04:39 PM

Quote:

Originally Posted by MeTaL_oRgY
lol, yeah, it?s the logicians news hack, as it?s my test page, I use it for everything I want before adding to my website. Your news hack works great!! thnx for that one by the way!

if you see below the news, you?ll see the login box, that?s a webtemplate :).... and if you login it redirects to the forum and no to the test pagee, that?s what I don?t wnt :o... I dunno if it?s possible or no... :o

Your login form lacks a hidden parameter such as this:
<input type="hidden" name="url" value="http://your url to jump after login">

MeTaL_oRgY 03-29-2004 12:03 AM

I guess I´m starting to get it.. thnx a lot for ur patiente and time logician!!! and thnx for creating such great hacks!!

Highlander 03-30-2004 06:35 AM

thx logician :D

wanna see what i maged till now with webtemplates? its still alpha study *smile*
http://spielplanet2.de/forums/view.p...lpha_news_v0_2 will finish about two weeks .. got not plenty of time to spend with coding all to my needs ...

ahh got a question.. ok tow queries.. wont qwork .. i see .. but how about a long querie wich crosses thread and attachment table ?
you just have integrated one in the standart installations of webtemplates.. ..something with LEFT JOIN and on this way you get tables and collumns from two tables .. is there really no way about?
something like that:
PHP Code:

SELECT FROM threads ..... LEFT JOIN attachment WHERE id

is this a way out?

greetings
Highlander

Logician 03-30-2004 08:15 AM

Quote:

Originally Posted by Highlander
is there really no way about?
something like that:
PHP Code:

SELECT FROM threads ..... LEFT JOIN attachment WHERE id

is this a way out?

You can not do that because attachments are not attached to the threads they are attached to the posts.

So the actual query should be
SELECT post.*, attachment.* FROM post LEFT JOIN attachment ON attachment.attachmentid=post.attachmentid where ...
but this does not even help you altough it successfully returns relevant attachments per post.

It does not work, because after you get the attachment info with this query you need some PHP code to do to display the attachment correctly. They are permissions code, extensions code etc.

Edit functions.php and check the code after this line and you'll understand me better:
PHP Code:

if ($post[attachmentid]!=and $post[attachmentvisible]) { 

Bottom line you can not do it.

Highlander 03-31-2004 04:11 AM

i am very sad :( .. so sad.. i will finish my live now .. cant live anymore with this malfunctions :D ..

okay.. so i looked and understand it now even a little bit better .. yes you are right the attachment table is crossing trough posts and threads table to get the right attachmend_id :( ..

hey but wait maybe there is an trick :D
When i selsect Threads from forum 304 .. i can arrange a selection from attachment table right beside to get the attachments from forum 304 ?
and i have a new question about the query i insert in the webquery list :D

when i insert this query:
PHP Code:

SELECT FROM threads WHERE forumid=304 .. 

<- i am able to get the results from this forum :D . okai thats very fine and also very nice working :D

but what about showing up threads from more than one forum ?
PHP Code:

SELECT FROM threads WHERE forumid=304,305,306 ORDER ..blabla.. 

i get now an error and no results.. anyway it dont matter.. its only one query..

Bug Report
$nowbrowsing -> is not showing up alwys..sometimes no session is showing up .. dont know why.. but i could figure out..that sometimes no session is started.. .. i am recognized with username end everything what belongs to this username.. but brwowsing around somtimes looses the session informations and nowbrowing is not function anymore .. have an idea?

How about this page:
http://spielplanet2.de/forums/view.php?s=$session[sessionhash]&pg=alpha_news_v0_2

it is okai for you to give you there some credits? And where do you want placed a 88x31 button or simple text link?
You did the biggest job on creating these sites.. so the credits belongs to you :D

Logician 03-31-2004 05:55 AM

Quote:

Originally Posted by Highlander
$nowbrowsing -> is not showing up alwys..sometimes no session is showing up .. dont know why.. but i could figure out..that sometimes no session is started.. .. i am recognized with username end everything what belongs to this username.. but brwowsing around somtimes looses the session informations and nowbrowing is not function anymore .. have an idea?

yeah I know about that. Actually it shows you but when you refresh. I'll correct it in the next version.

Quote:

it is okai for you to give you there some credits? And where do you want placed a 88x31 button or simple text link?
thx. no need for a button but if you like you can keep "powered by Logician Webtemplates v.x" text at the bottom.

codemonkey 03-31-2004 08:04 AM

One Question: When will the system work for vBulletin 3??

Highlander 04-02-2004 03:11 AM

the next version will be then for vb3?

*crying* .. i do not plan converting this year :D ..cause i build up so much with this versionb... i dont have the time to convert everything.. so i will try to use that for my need and newsfeeds :D

greetings..and much thanx for helping out in this thread...


All times are GMT. The time now is 08:05 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.01699 seconds
  • Memory Usage 1,925KB
  • 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
  • (1)bbcode_code_printable
  • (9)bbcode_php_printable
  • (18)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