vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Chat Modifications - MGC Chatbox Evo (https://vborg.vbsupport.ru/showthread.php?t=168992)

RedDevil 01-03-2009 11:29 AM

Nice work VBDev, just one problem i am having.

The post and thread notification doesnt seem to be working correctly in the general channel.

I have 3 channels 2 show post/thread notices general channel wont.

If i switch to display in seperate area then it works fine in general channel.

Any idea what the cause and cure is?

Cybershaolin 01-03-2009 01:58 PM

I agree, the new version works like a charm! Great work VBDev! :up:

adnedarn 01-03-2009 02:29 PM

Quote:

Originally Posted by VBDev (Post 1700121)
Oh crap...

To fix this, edit the mgc_cb_evo_ajax.php file.


Replace :
by :

Seems to have worked great! Thanks. That also makes the "Maximum number of displayed chats in the collapsed mode" work again too :)

Thanks!
Andrew

SnapOff Racing 01-03-2009 03:03 PM

Quote:

Originally Posted by VBDev (Post 1700117)
Thanks for the share :) I'll add it in the next version.

No prob, just wanna make it easier for users to make the switch to one of the best chatboxes I've seen :up:

Quote:

Originally Posted by VBDev (Post 1700121)
Oh crap...

To fix this, edit the mgc_cb_evo_ajax.php file.

Search for:
PHP Code:

        /* LIMIT clause construction */
        
if ($status == "closed") {
            
$limit $vbulletin->options['mgc_cb_evo_nbchats_closed'];
        } else if (
$location == "full") {
            
$limit $vbulletin->options['mgc_cb_evo_nbchats_full'];
        } else {
            
$limit $vbulletin->options['mgc_cb_evo_nbchats_normal'];
        }      
          
          
/* Retrieving of the notifications is separated */
          
if ($vbulletin->options['mgc_cb_evo_separate_chatsnotif_sql'])
          { 

Replace :
PHP Code:

if ($vbulletin->options['mgc_cb_evo_separate_chatsnotif_sql']) 

by :
PHP Code:

if ($vbulletin->options['mgc_cb_evo_separate_chatsnotif_sql'] && $status != "closed"



That's a bad fix use the one above :)



Yes that I understand but what have you done in your admincp to make the chatbox show in arcade in the previous version ?

OK I'm lost, should EVERYONE be making this fix because mine isn't doing that. If I hit the minimize button it works just fine... :confused:

adnedarn 01-03-2009 03:26 PM

Minimize the chatbox then refresh your window... see if you see the Maximum number of displayed chats in the collapsed mode that you have it set too.. and that you don't get an error in your email from the sql error. That's when it happened, not upon minimizing it.

andrew

geda 01-03-2009 04:13 PM

1 Attachment(s)
Hey Dev,

from time to time a message is poppin up after i have installed a new chat box. I have attached the screen shot of that error can u please check the screen shot and let me know what could me my problem.

And one more thing after i have installed this Upgraded Chat box, i'm feeling that my site became slow. Is that my psychology or the fact?

Thanx in Advance bro. MGC chat rock

adnedarn 01-03-2009 04:22 PM

geda- I and my users had experienced that in IE as well. It seems refreshing your cache fixes it... Hold CTRL and click the refresh button.. Or hold CTRL and push F5. That seems to take care of it for everyone here. ...so far at least.

Andrew

CristianoDiaz 01-03-2009 04:29 PM

Quote:

Originally Posted by CristianoDiaz (Post 1697901)
Is there any way to make Save the default when you hit enter in the box that pops up to send a PM in the chat box? Right now, you have to click on Save - if you click enter after typing your message, the box closes but it is not sent.

Still trying to see if I can get an answer to this, I did not see one. I upgraded to 2.10, and the behavior is still the same in Firefox.

VBDev 01-03-2009 04:33 PM

Quote:

Originally Posted by chooky (Post 1700171)
dont works for me, I ever dont see a message in the box in second style :(

This is not supposed to fix style issue.

It's working with default style but not custom style ?

Check if there are any javascripts error in your second style or non reverted chatbox templates.

Quote:

Originally Posted by eurofunny (Post 1700145)
With the 2.0.2 Version i have made this:

Code:

Integration into IBProarcade
In order to display the chatbox on the IBProarcade pages, follow these instructions:
In the admin control panel, go in the Display and positions of the chatbox.
Activate the option Display the chatbox on defined pages in a var or Display the chatbox on defined pages below the navbar.
In the pages list, add :

arcade

and then validate.
Open the arcade/functions/functions.php file and search for function do_output($output_array).
After // add additional needed variables, add :

global $mgc_cb_evo,$mgc_cb_evo_var;


Finally, if you are using te option to display the chatbox in a var, edit the ARCADE template and add :

$mgc_cb_evo_var

where you want the chatbox to appear.

What do you post at the readme and the Shoutbox is visible.

Later i have copy the files from 2.1.0 and import the Product and the Shoutbox is invisible at the Arcade...

Now i copy the 2.0.2 files and import the Product and the Shoutbox is visible at arcade...nothing more i have do at the admincp...

Thanks for the quick support.:)

And that doesn't work in the 2.1.0 version ?

Quote:

Originally Posted by Harley D (Post 1700134)
Nice job!
Working like a charm... THANK YOU ;)

Request:
when clicking on New Post/Threads, have the link take you to the actual or last post made, rather than the first post of the thread.

Ok noted.

Quote:

Originally Posted by Red-Devil (Post 1700210)
Nice work VBDev, just one problem i am having.

The post and thread notification doesnt seem to be working correctly in the general channel.

I have 3 channels 2 show post/thread notices general channel wont.

If i switch to display in seperate area then it works fine in general channel.

Any idea what the cause and cure is?

It's working correctly. As I said already unless you use the separate chats and notifications sql option notifications are considered as chats.

So if there is lot of activity in the general channel then you will only see chats and not notifications if these notifications are older than the chats. See what I mean ?

Quote:

Originally Posted by adnedarn (Post 1700367)
Minimize the chatbox then refresh your window... see if you see the Maximum number of displayed chats in the collapsed mode that you have it set too.. and that you don't get an error in your email from the sql error. That's when it happened, not upon minimizing it.

andrew

Well this fix is to be applied only if you use the chatbox option to separate chats and notifications query.

geda 01-03-2009 04:34 PM

Quote:

Originally Posted by adnedarn (Post 1700428)
geda- I and my users had experienced that in IE as well. It seems refreshing your cache fixes it... Cold CTRL and click the refresh button.. Or hold CTRL and push F5. That seems to take care of it for everyone here. ...so far at least.

Andrew

Adnedarn,

Appreciate for ur comment but is that a permanent solution to this problem? :)

VBDev 01-03-2009 04:36 PM

Quote:

Originally Posted by geda (Post 1700413)
Hey Dev,

from time to time a message is poppin up after i have installed a new chat box. I have attached the screen shot of that error can u please check the screen shot and let me know what could me my problem.


And one more thing after i have installed this Upgraded Chat box, i'm feeling that my site became slow. Is that my psychology or the fact?

Thanx in Advance bro. MGC chat rock

What makes you feel its slowing down your site ?

Quote:

Originally Posted by CristianoDiaz (Post 1700439)
Still trying to see if I can get an answer to this, I did not see one. I upgraded to 2.10, and the behavior is still the same in Firefox.

Well I don't know will have to dig because I use yui for popups and it does manage the whole thing itself.

I don't have a quick how to right now will have to check yui notification. I note it in the todo list.

VBDev 01-03-2009 04:38 PM

Quote:

Originally Posted by geda (Post 1700443)
Adnedarn,

Appreciate for ur comment but is that a permanent solution to this problem? :)

No it's not I will fix this by removing the error message in order not to bother users :)

geda 01-03-2009 04:39 PM

Quote:

Originally Posted by VBDev (Post 1700446)
What makes you feel its slowing down your site ?

Well it could be my server problem but i juss want to double check with other people who have installed it:) I might be totally wrong

adnedarn 01-03-2009 04:41 PM

Quote:

Originally Posted by geda (Post 1700443)
Adnedarn,

Appreciate for ur comment but is that a permanent solution to this problem? :)



Quote:

Originally Posted by VBDev (Post 1700448)
No it's not I will fix this by removing the error message in order not to bother users :)

Seems to work though. No one that has done that has had it come back.. at least till the "real"(?) fix comes out.. better than getting the error all the time LOL
Andrew

SnapOff Racing 01-03-2009 05:32 PM

Quote:

Originally Posted by VBDev (Post 1700441)
Well this fix is to be applied only if you use the chatbox option to separate chats and notifications query.

Oh ok cool, the notifications those are the things that show up in the chatbox saying that a new post was made or a new thread was created right?

adnedarn 01-03-2009 05:44 PM

Quote:

Originally Posted by SnapOff Racing (Post 1700504)
Oh ok cool, the notifications those are the things that show up in the chatbox saying that a new post was made or a new thread was created right?

yes--If you have
Quote:

NEW Separate SQL query for the notifications
By default, the notifications are considered as chats in order not to add an additional query at each chatbox refresh.
By activating this option, notifications will be retrieved from a separate query allowing you to separately set the number of displayed notifications.
set to yes (default is no) the mod is necessary from my understanding.

Andrew

eurofunny 01-03-2009 05:46 PM

Quote:

Originally Posted by VBDev (Post 1700441)
And that doesn't work in the 2.1.0 version ?

Yes right..........i overwrite the files with Version 2.1.0, import the product and the Shoutbox is invisible.

pedroenf 01-03-2009 05:51 PM

Quote:

Originally Posted by VBDev (Post 1700117)
Do you remember which text you put in the phrase when that acted like that ?


A ChatBox encontra-se no modo inactivo.
Para sair do modo inactivo clique no bot?o "refresh" ou na tecla F5 do seu teclado e actualize toda a p?gina.

inciarco 01-04-2009 05:50 AM

I've detected a Bug on the Last Version.

When You Edit a Shout all the Most Recent Shouts from the Edited one are not Displayed and the ShoutBox Stays on "Loading" those most Recent Shouts; that don't change even by pressing the "Refresh" Button. :confused:

Only Some Minutes Later the ShoutBox decides to Display the Changed Messages and the Newest Ones (from the Changed One). :confused:

Is curious because for Unregistered Users (Only the Can See ChatBox Option On), the Changes can be seen immediately. :confused:

I Hope you can Detect and Fix that Small Bug.

I liked all the other Improvements, Thank You For Sharing this Great Mod.

My Best Regards.

:)

Ranger187 01-04-2009 05:52 AM

Quote:

Originally Posted by eurofunny (Post 1700522)
Yes right..........i overwrite the files with Version 2.1.0, import the product and the Shoutbox is invisible.

Um. Invisible? You mean it's not there. ;) Make sure usergroups setting is right. Make sure it's enabled etc.

zelnik 01-04-2009 07:06 AM

A lot of my members are complaining to me that they're getting ajax errors and to contact site admin.

I'm yet to get the error myself and trying to get a screen capture of the error but just thought i'd post here to see if anyone else has been getting the same?

The previous version was running just fine!

VBDev 01-04-2009 07:20 AM

Quote:

Originally Posted by pedroenf (Post 1700531)
A ChatBox encontra-se no modo inactivo.
Para sair do modo inactivo clique no bot?o "refresh" ou na tecla F5 do seu teclado e actualize toda a p?gina.

Ok then it was the double quotes. These are interpreted as characters you know in javascript and php language.

Quote:

Originally Posted by inciarco (Post 1701073)
I've detected a Bug on the Last Version.

When You Edit a Shout all the Most Recent Shouts from the Edited one are not Displayed and the ShoutBox Stays on "Loading" those most Recent Shouts; that don't change even by pressing the "Refresh" Button. :confused:

Only Some Minutes Later the ShoutBox decides to Display the Changed Messages and the Newest Ones (from the Changed One). :confused:

Is curious because for Unregistered Users (Only the Can See ChatBox Option On), the Changes can be seen immediately. :confused:

I Hope you can Detect and Fix that Small Bug.

I liked all the other Improvements, Thank You For Sharing this Great Mod.

My Best Regards.

:)

I am not sure I did understand you. You mean that when you edit a chat in the chatbox the chatbox then stays in loading state ?

Well I just tested and it's working perfect on my forum (forumcoding.com).

Quote:

Originally Posted by Ranger187 (Post 1701074)
Um. Invisible? You mean it's not there. ;) Make sure usergroups setting is right. Make sure it's enabled etc.

He meant it was invisible in the arcade if I assume right ?

VBDev 01-04-2009 07:21 AM

Quote:

Originally Posted by zelnik (Post 1701100)
A lot of my members are complaining to me that they're getting ajax errors and to contact site admin.

I'm yet to get the error myself and trying to get a screen capture of the error but just thought i'd post here to see if anyone else has been getting the same?

The previous version was running just fine!

It's a known "issue". Tell your users to refresh their cache.

Shishir 01-04-2009 07:23 AM

The Language is still Spanish or something. I did everything right I guess. But no luck. Can't understand a Word in Admin CP. All the messages are in that language also.

May I mention, I have uploaded the English Language file as mentioned.

So disappointed. Couldn't figure out, so asking for any help.

Shishir

zelnik 01-04-2009 07:33 AM

Quote:

Originally Posted by VBDev (Post 1701103)
It's a known "issue". Tell your users to refresh their cache.

Thanks for the quick reply VBDev!

Hve you any idea on how to fix this yet or is it advisable to go back to the earlier version?

The Realist 01-04-2009 09:04 AM

I had the same problem, see my post Here.

Regards

Quote:

Originally Posted by Shishir (Post 1701104)
The Language is still Spanish or something. I did everything right I guess. But no luck. Can't understand a Word in Admin CP. All the messages are in that language also.

May I mention, I have uploaded the English Language file as mentioned.

So disappointed. Couldn't figure out, so asking for any help.

Shishir


inciarco 01-04-2009 02:58 PM

Quote:

Originally Posted by VBDev (Post 1701102)
I am not sure I did understand you. You mean that when you edit a chat in the chatbox the chatbox then stays in loading state ?

Well I just tested and it's working perfect on my forum (forumcoding.com).

When I set the Permissions of Any Usergroup to just "Can view the chatbox" that Usergroup can see all the Posts.

When I ser the Permissions of Any Userfroup to "Can use the chatbox" then if I maka a Change on any Post, from that Post and the ones Most Recent the Usergroups where I've set the Permissions to "Can use the chatbox" won't be able to see that Changed Post and the ones Most Recent than That One, at least for some time that I have not yet determine; after that time passes (I don't know what process happens internally on the ChatBox) then the Usergroups are Allowed to see the Changed Post and the Recent Ones.

That is in the ChatBox, because on the History/Archive all the Posts are Shown Well.

And as I said if I set only the Permission of "Can view the chatbox" and the Other ones to No (like for Unregistered Users), then that Usergroup can see all the Posts even the One Changed and most Recent Ones than that.

That Behaviour makes me Deduce that is a Bug; I've used Previous Versions of your ChatBox (exactly the 0.2.1 of EVO) and that Error don't Occur.

What Can Be Happening? :confused:

My Best Regards.

:)

VBDev 01-04-2009 04:03 PM

Quote:

Originally Posted by zelnik (Post 1701105)
Thanks for the quick reply VBDev!

Hve you any idea on how to fix this yet or is it advisable to go back to the earlier version?

Yes I know how to fix it. Just edit the mgc_cb_evo_functions.js file in the clientscript/mgc_cb_evo folder and search for the warning message you users have had.

And remove the whole alert javascript function call in which it's cointained.

Quote:

Originally Posted by inciarco (Post 1701368)
When I set the Permissions of Any Usergroup to just "Can view the chatbox" that Usergroup can see all the Posts.

When I ser the Permissions of Any Userfroup to "Can use the chatbox" then if I maka a Change on any Post, from that Post and the ones Most Recent the Usergroups where I've set the Permissions to "Can use the chatbox" won't be able to see that Changed Post and the ones Most Recent than That One, at least for some time that I have not yet determine; after that time passes (I don't know what process happens internally on the ChatBox) then the Usergroups are Allowed to see the Changed Post and the Recent Ones.

That is in the ChatBox, because on the History/Archive all the Posts are Shown Well.

And as I said if I set only the Permission of "Can view the chatbox" and the Other ones to No (like for Unregistered Users), then that Usergroup can see all the Posts even the One Changed and most Recent Ones than that.

That Behaviour makes me Deduce that is a Bug; I've used Previous Versions of your ChatBox (exactly the 0.2.1 of EVO) and that Error don't Occur.

What Can Be Happening? :confused:

My Best Regards.

:)

Well I am not having that problem on my forum, please send me a test account so that I can have a look.

Cybershaolin 01-04-2009 04:30 PM

Quote:

Originally Posted by VBDev (Post 1701450)
Yes I know how to fix it. Just edit the mgc_cb_evo_functions.js file in the clientscript/mgc_cb_evo folder and search for the warning message you users have had.

And remove the whole alert javascript function call in which it's cointained.

Regarding this error, what do I need to remove exactly between the first ; and the last ; ?

OK I know I have to remove the error message but it ends with )}}... so do I remove the whole thing, even after until the other ; ?

Just want to be sure about what to remove...

Code:

;function vBulletin_AJAX_Error_Handler(a){alert("Ajax error: an error has occured in an ajax request of the chatbox, please report your admin")}}YAHOO.util.Event.onDOMReady(function(){YAHOO.initChatbox=new function(){var a=function(){this.cancel();

entertain 01-04-2009 06:36 PM

When clicking on "View all chats of ..." in the menu of a shout (from an other user), I can always only see my own shouts.

Alexvanleeuwen 01-04-2009 07:59 PM

I get this mail, can you help me with it?

Database error in vBulletin 3.7.4:

Invalid SQL:

(
SELECT c.*,fromu.userid AS fromuserid,fromu.username AS fromusername,fromu.usergroupid AS fromusergroupid,fromu.displaygroupid AS fromdisplaygroupid,
tou.userid AS touserid,tou.username AS tousername,tou.usergroupid AS tousergroupid,tou.displaygroupid AS todisplaygroupid,
avatar.avatarpath, NOT ISNULL(customavatar.userid) AS hascustomavatar, customavatar.dateline AS avatardateline, customavatar.width AS avwidth, customavatar.height AS avheight,
customavatar.height_thumb AS avheight_thumb, customavatar.width_thumb AS avwidth_thumb, customavatar.filedata_thumb,
fromu.avatarid,fromu.avatarrevision

FROM mgc_cb_evo_chat AS c
LEFT JOIN user AS fromu ON (c.fromuid=fromu.userid)
LEFT JOIN user AS tou ON (c.touid=tou.userid)
LEFT JOIN avatar AS avatar ON (avatar.avatarid = fromu.avatarid)
LEFT JOIN customavatar AS customavatar ON (customavatar.userid = fromu.userid)

WHERE (
chanid='0'
AND coidentifier IN ('0','me','announcement','pm','slap')
AND (touid='0' OR fromuid='2369'
OR touid='2369')
AND iswarning='0'
)
ORDER BY sticky DESC,c.dateline DESC
LIMIT 15
)
UNION ALL
(
SELECT c.*,fromu.userid AS fromuserid,fromu.username AS fromusername,fromu.usergroupid AS fromusergroupid,fromu.displaygroupid AS fromdisplaygroupid,
tou.userid AS touserid,tou.username AS tousername,tou.usergroupid AS tousergroupid,tou.displaygroupid AS todisplaygroupid,
avatar.avatarpath, NOT ISNULL(customavatar.userid) AS hascustomavatar, customavatar.dateline AS avatardateline, customavatar.width AS avwidth, customavatar.height AS avheight,
customavatar.height_thumb AS avheight_thumb, customavatar.width_thumb AS avwidth_thumb, customavatar.filedata_thumb,
fromu.avatarid,fromu.avatarrevision

FROM mgc_cb_evo_chat AS c
LEFT JOIN user AS fromu ON (c.fromuid=fromu.userid)
LEFT JOIN user AS tou ON (c.touid=tou.userid)
LEFT JOIN avatar AS avatar ON (avatar.avatarid = fromu.avatarid)
LEFT JOIN customavatar AS customavatar ON (customavatar.userid = fromu.userid)

WHERE
ORDER BY sticky DESC,c.dateline DESC
LIMIT 20
);

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER BY sticky DESC,c.dateline DESC
LIMIT 20
)' at line 39

pedroenf 01-04-2009 08:24 PM

Quote:

Originally Posted by entertain (Post 1701570)
When clicking on "View all chats of ..." in the menu of a shout (from an other user), I can always only see my own shouts.


I confirm that.

The Realist 01-04-2009 08:51 PM

Same here.

The code I see is:

mgc_cb_evo.php?do=search&what=userchats&u=1

Quote:

Originally Posted by entertain (Post 1701570)
When clicking on "View all chats of ..." in the menu of a shout (from an other user), I can always only see my own shouts.

Quote:

Originally Posted by pedroenf (Post 1701676)
I confirm that.


zelnik 01-04-2009 09:18 PM

VBDev,

I'm hoping you can help me on this matter but since installing the latest version of your chatbox I've been notice people have been having to following error on while i'm watching the whois online page..

Unknown Location:

/forum/config.txt

can you please confirm this has nothing to do with your application so I can help narrow down what it could be?

Thanks

Wheemer 01-04-2009 09:31 PM

I would like to have the chat box display on my arcade pages...

Also the chat box displays on my zoints pages, but always says loading. I think this is because the zoints pages are in a "z" subdir.

Can you help please.

pedroenf 01-04-2009 10:11 PM

VBDev where can i change the sound file extension? Is it possible?

pedroenf 01-04-2009 10:17 PM

Nevermind i have found it: mgc_cb_evo_functions.js file in clientscript folder. Maybe an option to change the sound file in next version would be a good choice :D

apiasto 01-05-2009 12:11 AM

nice work,very impressive/is there a way that user can set their default font n color?thnx

Shishir 01-05-2009 02:27 AM

Quote:

Originally Posted by The Realist (Post 1701150)
I had the same problem, see my post Here.

Regards

:D Couldn't read so many pages. Hmm, so there is no response for this. Ok. I'll live with this. The Mod is good. So not much to shout about.

Thanks for the input.
Shishir

Greenskull 01-05-2009 02:30 AM

it just says loading for me then if i type something it gives me an error:

Your submission could not be processed because a security token was missing.

If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error.

I couldn't find the mgc_cb_evo.js file anywhere either. Is that what I needed to change?

EDIT: Tried the security thing. That didn't work

EDIT: AHA! I did waht you suggested: Check that you haven't any non reverted chatbox templates (one that you might have modified) Thanks


All times are GMT. The time now is 09:00 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.11519 seconds
  • Memory Usage 1,912KB
  • 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
  • (2)bbcode_code_printable
  • (3)bbcode_php_printable
  • (36)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)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