vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   uCash & uShop (https://vborg.vbsupport.ru/forumdisplay.php?f=100)
-   -   uCash & uShop old support and thank you thread (https://vborg.vbsupport.ru/showthread.php?t=73736)

r6xual 05-16-2004 07:16 AM

This may be kindof a stupid question, but......I got the hack installed and all seems good so far however all the actions are "out of stock" and I have tested posting threds etc but receive no points for doing so. Any ideas??

**edit**

Well I figured out why it says out of stock now, I donated some points to myself and i am able to buy things now however users are not accumilating points for whatever they are doing. Any ideas guys??

BTW. Sory for not introducing myself.

Charlie Dinges
23 yr
MN.

JUst started getting into vbportal/vbulletin etc. Really like it alot. Might explain why its 3:41 am and im on her eposting!!! :cheeky:

Lacrosse Boy 05-16-2004 05:42 PM

Quote:

Originally Posted by Zachery
You have miss hacked your files, start again with fresh files and DONT use Dreamweaver.

Thanks for the help! I greatly appreciated it.

This time I used Crimson Editor. Great program.

Out of curiosity, why does Dreamweaver change the files that I edit?

Zachery 05-16-2004 06:04 PM

Its not that dreamweaver in it self is bad, but most people do what dreamweaver tells them, so when they save files, it prefixes requires includes and some other php functions with a full path. :)

its not a bad editor, its just not great ;D

r6xual 05-16-2004 06:13 PM

Quote:

Originally Posted by r6xual
This may be kindof a stupid question, but......I got the hack installed and all seems good so far however all the actions are "out of stock" and I have tested posting threds etc but receive no points for doing so. Any ideas??

**edit**

Well I figured out why it says out of stock now, I donated some points to myself and i am able to buy things now however users are not accumilating points for whatever they are doing. Any ideas guys??

BTW. Sory for not introducing myself.

Charlie Dinges
23 yr
MN.

JUst started getting into vbportal/vbulletin etc. Really like it alot. Might explain why its 3:41 am and im on her eposting!!! :cheeky:

Does this have anything to do with

Points Table?
Set this to the name of the table the points field is in. This table must be in the $bbuserinfo/$post/$userinfo arrays to display properly! (i.e. user or userfield tables)
~Only modify this if you know what you are doing!~

in the ucash setting?

Zachery 05-16-2004 06:23 PM

No, as the disclaimer says, dont modify that setting unless you know what your doing.

r6xual 05-16-2004 06:29 PM

K thats what i figured i guess i just didnt know if there was a possibilty that thats what was causing the problem.

/scratches head

Intex 05-16-2004 06:43 PM

I've run the install file 'ushop_install.php' and eveything installed ok. I then completed all the file edits as instructed. However when I came to do the template updates, as soon as I went into AdminCP (or anywhere else on the site), I now get an error:

Code:

Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in C:\Apache2\htdocs\forum\includes\init.php on line 508

Here is the PHP code (I've highlighted line 508 in the code *** below ***)

PHP Code:

        // add default special templates
        
$specialtemplates array_merge(array(
            
'options',
            
'cron',
            
'forumcache',
            
'usergroupcache',
            
'stylecache',
            
'arcadesettings'
        
), $specialtemplates);
*** 
THIS IS LINE 508 ***
        
$datastoretemp $DB_site->query("
            SELECT title, data
            FROM " 
TABLE_PREFIX "datastore
            WHERE title IN ('" 
implode("', '"$specialtemplates) . "')
        "
);
        unset(
$specials$specialtemplates); 

I've only got a few hacks installed (vbadvanced, v3 arcade and htl (which I didn't use to install this hack btw).

Any ideas?

Weasel 05-17-2004 05:13 PM

There are 2 bugs in action.stickythread.php, these should have definitly been caught before release...

Open up action.stickythread.php

Find:
PHP Code:

$threadinfo $DB_site->query_first("SELECT threadid, title, sticky FROM thread WHERE threadid='$threadid'"); 

Replace with:
PHP Code:

$threadinfo $DB_site->query_first("SELECT threadid, title, sticky FROM ".TABLE_PREFIX."thread WHERE threadid='$threadid'"); 

Find:
PHP Code:

addslahes($thread['title']) 

Replace with:
PHP Code:

addslashes($thread['title']) 


Zachery 05-17-2004 05:40 PM

speling and a thread prefix, thanks :)

Intex 05-17-2004 06:38 PM

Weasal - are you saying this is the cause of my problem in post 889 above?

U-Dox 05-17-2004 10:39 PM

I Gotta Problem. For Some Reason Tha "Thief" Option Isnt Workin Anymore.

it says "There seems to have been a slight problem with the database"

i dont know what to do. it was workin very well yesterday and my members love it. i didnt make any changes to the site at all to make it not work. What should i do?

Zachery 05-17-2004 10:40 PM

Right click and view source, we need to view the error message to see whats wrong.

U-Dox 05-18-2004 01:08 AM

Aight This Is What It Said


<html><head><title>StreetVerbz Database Error</title><style type="text/css"><!--.error { font: 11px tahoma, verdana, arial, sans-serif; }--></style></head>
<body></table></td></tr></table></form>
<blockquote><p class="error">&nbsp;</p><p class="error"><b>There seems to have been a slight problem with the StreetVerbz database.</b><br />
Please try again by pressing the <a href="javascript:window.location=window.location;" >refresh</a> button in your browser.</p><p class="error">An E-Mail has been dispatched to our <a href="mailto:dbmaster@example.com">Technical Staff</a>, who you can also contact if the problem persists.</p><p class="error">We apologise for any inconvenience.</p><form><textarea class="error" rows="15" cols="100" wrap="off">Database error in vBulletin 3.0.1:

Invalid SQL: UPDATE user SET uttpoints=uttpoints+5.00, reputation=reputation- WHERE userid='1'
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 'WHERE userid='1'' at line 1

mysql error number: 1064


Can You See The Problem?

Flow Fusion 05-18-2004 04:27 AM

How do I update the users money in the richest members info? My members are still getting very little money for each post even though I updated every forum?

Zachery 05-18-2004 04:29 AM

Quote:

Originally Posted by Flow Fusion
How do I update the users money in the richest members info? My members are still getting very little money for each post even though I updated every forum?

Did you edit the money per posts view thread settings? the forum settings are just multipliers, nothing more.

Flow Fusion 05-18-2004 02:46 PM

Quote:

Originally Posted by Zachery
Did you edit the money per posts view thread settings? the forum settings are just multipliers, nothing more.

I did edit that but this is what I get


http://www.giftedsouls.com/gs/ushop.php?do=richestusers

I also want to know about the errors I get when I upload the functions_showthread.php

as well as the showthread.php

I will post them later because I want to figure this out first.

Intex 05-18-2004 05:18 PM

** BUMP - Any help ? **

Quote:

Originally Posted by Intex
I've run the install file 'ushop_install.php' and eveything installed ok. I then completed all the file edits as instructed. However when I came to do the template updates, as soon as I went into AdminCP (or anywhere else on the site), I now get an error:

Code:

Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in C:\Apache2\htdocs\forum\includes\init.php on line 508

Here is the PHP code (I've highlighted line 508 in the code *** below ***)

PHP Code:

        // add default special templates
        
$specialtemplates array_merge(array(
            
'options',
            
'cron',
            
'forumcache',
            
'usergroupcache',
            
'stylecache',
            
'arcadesettings'
        
), $specialtemplates);
*** 
THIS IS LINE 508 ***
        
$datastoretemp $DB_site->query("
            SELECT title, data
            FROM " 
TABLE_PREFIX "datastore
            WHERE title IN ('" 
implode("', '"$specialtemplates) . "')
        "
);
        unset(
$specials$specialtemplates); 

I've only got a few hacks installed (vbadvanced, v3 arcade and htl (which I didn't use to install this hack btw).

Any ideas?


sabret00the 05-18-2004 05:21 PM

Quote:

Originally Posted by Intex
I've run the install file 'ushop_install.php' and eveything installed ok. I then completed all the file edits as instructed. However when I came to do the template updates, as soon as I went into AdminCP (or anywhere else on the site), I now get an error:

Code:

Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in C:\Apache2\htdocs\forum\includes\init.php on line 508

Here is the PHP code (I've highlighted line 508 in the code *** below ***)

PHP Code:

          // add default special templates
          
$specialtemplates array_merge(array(
              
'options',
              
'cron',
              
'forumcache',
              
'usergroupcache',
              
'stylecache',
              
'arcadesettings'
          
), $specialtemplates);
  *** 
THIS IS LINE 508 ***
          
$datastoretemp $DB_site->query("
              SELECT title, data
              FROM " 
TABLE_PREFIX "datastore
             WHERE title IN ('" 
implode("', '"$specialtemplates) . "')
          "
);
          unset(
$specials$specialtemplates); 

I've only got a few hacks installed (vbadvanced, v3 arcade and htl (which I didn't use to install this hack btw).

Any ideas?

do this
PHP Code:

           // add default special templates
           
$specialtemplates array_merge(array(
               
'options',
               
'cron',
               
'forumcache',
               
'usergroupcache',
               
'stylecache',
               
'arcadesettings',
           ), 
$specialtemplates);
  
// *** THIS IS LINE 508 ***
           
$datastoretemp $DB_site->query("
               SELECT title, data
               FROM " 
TABLE_PREFIX "datastore
             WHERE title IN ('" 
implode("', '"$specialtemplates) . "')
           "
);
           unset(
$specials$specialtemplates); 

and tell me if it fixes the problem

Intex 05-18-2004 05:25 PM

sabret00the - Thx for the reply.

From what I can see you've put the $specialtemplates); on it's own line. Would this really make that much difference? BTW: the line where I said THIS IS LINE 508 was only put in there for posting here. It's not in the template at all.

Flow Fusion 05-18-2004 06:40 PM

Ok here are the errors I'm getting from the includes/functions.php

Parse error: parse error in /home/giftedso/public_html/gs/includes/functions.php on line 1871

Fatal error: Call to undefined function: is_browser() in /home/giftedso/public_html/gs/global.php on line 59

And this is the last file I need to upload. This is the mofo that is causeing the points to not move correctly I assume?

sabret00the 05-18-2004 07:19 PM

Quote:

Originally Posted by Intex
sabret00the - Thx for the reply.

From what I can see you've put the $specialtemplates); on it's own line. Would this really make that much difference? BTW: the line where I said THIS IS LINE 508 was only put in there for posting here. It's not in the template at all.

hopefully

sabret00the 05-18-2004 07:20 PM

Quote:

Originally Posted by Flow Fusion
Ok here are the errors I'm getting from the includes/functions.php

Parse error: parse error in /home/giftedso/public_html/gs/includes/functions.php on line 1871

Fatal error: Call to undefined function: is_browser() in /home/giftedso/public_html/gs/global.php on line 59


And this is the last file I need to upload. This is the mofo that is causeing the points to not move correctly I assume?

can you paste your functions.php around line 1870 to 1890

Flow Fusion 05-18-2004 07:37 PM

$debughtml .= "\n<form name=\"debugger\" action=\"\">\n<div align=\"center\">\n<!--querycount-->Executed <b>$query_count</b> queries<!--/querycount-->" . iif($_TEMPLATEQUERIES, " (<b>" . sizeof($_TEMPLATEQUERIES) . "</b> queries for uncached templates)", '') . " . ";
$debughtml .= " (<a href=\"" . htmlspecialchars_uni(SCRIPTPATH) . iif(strpos(SCRIPTPATH, '?') '?')'?')'?')'?')'?')'?')'?')=== false, '?', '?','?','?','?','?','?','?','&amp;') . "tempusage=1\">Template Usage</a>) (<a href=\"" . htmlspecialchars_uni(SCRIPTPATH) . iif(strpos(SCRIPTPATH, '?') '?')'?')'?')'?')'?')'?')'?')=== false, '?', '?','?','?','?','?','?','?','&amp;') . "explain=1\">Explain</a>)<br />\n";
$debughtml .= "<select>\n\t<option>(Page Generated in $totaltime Seconds)</option>\n$messages</select>\n";
if (is_array($tempusagecache))
{
global $vbcollapse;
$debughtml .= "\n<br /><br />\n<table class=\"tborder\" cellpadding=\"3\" cellspacing=\"1\" align=\"center\" width=\"40%\">\n";
$debughtml .= "<thead><tr align=\"$stylevar[left]\"><td class=\"thead\"><a style=\"float:$stylevar[right]\" href=\"#\" onclick=\"return toggle_collapse('templateusage')\"><img src=\"$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_templateusage].gif\" alt=\"\" border=\"0\" /></a>Template Usage</td></tr></thead><tbody id=\"collapseobj_templateusage\" style=\"$vbcollapse[collapseobj_templateusage]\">\n";
$hiddentemps = '';

ksort($tempusagecache);
foreach ($tempusagecache AS $tempname => $times)
{
$debughtml .= "<tr><td class=\"alt1\" align=\"$stylevar[left]\"><span class=\"smallfont\">" . iif($_TEMPLATEQUERIES["$tempname"], "<font color=\"red\"><b>$tempname</b></font>", $tempname) . " ($times)</span></td></tr>\n";
$hiddentemps .= "'$tempname',\n";

// this is only for vbulletin.com
$countsql .= "\tWHEN '" . addslashes($tempname) . "' THEN usecount + $times\n";
$namesql .= ", '" . addslashes($tempname) . "'";
}

PixelFx 05-18-2004 07:40 PM

any updates planned soon? :) or version updates with fixes in the last few posts?

Intex 05-18-2004 08:10 PM

OK, I've solved the problem that I had in post 889. If you look at the code on the page you will see there was a comma missing at the end of the list of items, i.e. 'stylecache', 'utt_store_act', etc.

The code below shows the correction:

PHP Code:

        // add default special templates
        
$specialtemplates array_merge(array(
            
'options',
            
'cron',
            
'forumcache',
            
'usergroupcache',
            
'stylecache',
            
'utt_store_act',
            
'arcadesettings'
        
), 


sabret00the 05-18-2004 08:19 PM

Quote:

Originally Posted by Flow Fusion
$debughtml .= "\n<form name=\"debugger\" action=\"\">\n<div align=\"center\">\n<!--querycount-->Executed <b>$query_count</b> queries<!--/querycount-->" . iif($_TEMPLATEQUERIES, " (<b>" . sizeof($_TEMPLATEQUERIES) . "</b> queries for uncached templates)", '') . " . ";
$debughtml .= " (<a href=\"" . htmlspecialchars_uni(SCRIPTPATH) . iif(strpos(SCRIPTPATH, '?') '?')'?')'?')'?')'?')'?')'?')=== false, '?', '?','?','?','?','?','?','?','&amp;') . "tempusage=1\">Template Usage</a>) (<a href=\"" . htmlspecialchars_uni(SCRIPTPATH) . iif(strpos(SCRIPTPATH, '?') '?')'?')'?')'?')'?')'?')'?')=== false, '?', '?','?','?','?','?','?','?','&amp;') . "explain=1\">Explain</a>)<br />\n";
$debughtml .= "<select>\n\t<option>(Page Generated in $totaltime Seconds)</option>\n$messages</select>\n";
if (is_array($tempusagecache))
{
global $vbcollapse;
$debughtml .= "\n<br /><br />\n<table class=\"tborder\" cellpadding=\"3\" cellspacing=\"1\" align=\"center\" width=\"40%\">\n";
$debughtml .= "<thead><tr align=\"$stylevar[left]\"><td class=\"thead\"><a style=\"float:$stylevar[right]\" href=\"#\" onclick=\"return toggle_collapse('templateusage')\"><img src=\"$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_templateusage].gif\" alt=\"\" border=\"0\" /></a>Template Usage</td></tr></thead><tbody id=\"collapseobj_templateusage\" style=\"$vbcollapse[collapseobj_templateusage]\">\n";
$hiddentemps = '';

ksort($tempusagecache);
foreach ($tempusagecache AS $tempname => $times)
{
$debughtml .= "<tr><td class=\"alt1\" align=\"$stylevar[left]\"><span class=\"smallfont\">" . iif($_TEMPLATEQUERIES["$tempname"], "<font color=\"red\"><b>$tempname</b></font>", $tempname) . " ($times)</span></td></tr>\n";
$hiddentemps .= "'$tempname',\n";

// this is only for vbulletin.com
$countsql .= "\tWHEN '" . addslashes($tempname) . "' THEN usecount + $times\n";
$namesql .= ", '" . addslashes($tempname) . "'";
}

could you encapsoluate that in a php tag please

Intex 05-18-2004 08:21 PM

Sabret00the - thx. for your input - it pointed me in the right direction :).

Intex 05-18-2004 08:27 PM

Installed successfully now. Working fine on 3.0.1.

Nice work GeekyDesigns :). /me clicks INSTALL.

Flow Fusion 05-18-2004 08:29 PM

Quote:

Originally Posted by sabret00the
could you encapsoluate that in a php tag please

Huh?

Intex 05-18-2004 08:32 PM

Flow Fushion - he means go back to your post where you pasted all that code and put [ PHP ] at the front of it and [ /PHP ] at the end of it. This makes the code more visible.

Make sure you take out the spaces before and after the [ and ] above.

Flow Fusion 05-18-2004 08:43 PM

PHP Code:

$debughtml .= "\n<form name=\"debugger\" action=\"\">\n<div align=\"center\">\n<!--querycount-->Executed <b>$query_count</b> queries<!--/querycount-->" iif($_TEMPLATEQUERIES" (<b>" sizeof($_TEMPLATEQUERIES) . "</b> queries for uncached templates)"'') . " . ";
$debughtml .= " (<a href=\"" htmlspecialchars_uni(SCRIPTPATH) . iif(strpos(SCRIPTPATH'?''?')'?')'?')'?')'?')'?')'?')=== false'?''?','?','?','?','?','?','?','&amp;') . "tempusage=1\">Template Usage</a>) (<a href=\"" htmlspecialchars_uni(SCRIPTPATH) . iif(strpos(SCRIPTPATH'?''?')'?')'?')'?')'?')'?')'?')=== false'?''?','?','?','?','?','?','?','&amp;') . "explain=1\">Explain</a>)<br />\n";
$debughtml .= "<select>\n\t<option>(Page Generated in $totaltime Seconds)</option>\n$messages</select>\n";
if (
is_array($tempusagecache))
{
global 
$vbcollapse;
$debughtml .= "\n<br /><br />\n<table class=\"tborder\" cellpadding=\"3\" cellspacing=\"1\" align=\"center\" width=\"40%\">\n";
$debughtml .= "<thead><tr align=\"$stylevar[left]\"><td class=\"thead\"><a style=\"float:$stylevar[right]\" href=\"#\" onclick=\"return toggle_collapse('templateusage')\"><img src=\"$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_templateusage].gif\" alt=\"\" border=\"0\" /></a>Template Usage</td></tr></thead><tbody id=\"collapseobj_templateusage\" style=\"$vbcollapse[collapseobj_templateusage]\">\n";
$hiddentemps '';

ksort($tempusagecache);
foreach (
$tempusagecache AS $tempname => $times)
{
$debughtml .= "<tr><td class=\"alt1\" align=\"$stylevar[left]\"><span class=\"smallfont\">" iif($_TEMPLATEQUERIES["$tempname"], "<font color=\"red\"><b>$tempname</b></font>"$tempname) . " ($times)</span></td></tr>\n";
$hiddentemps .= "'$tempname',\n";

// this is only for vbulletin.com
$countsql .= "\tWHEN '" addslashes($tempname) . "' THEN usecount + $times\n";
$namesql .= ", '" addslashes($tempname) . "'";



Flow Fusion 05-18-2004 08:47 PM

Wow that was cool lol

Zachery 05-18-2004 09:08 PM

Just so everyon knows we are working on .95, and ANY time you get global.php errors you have not hacked somthing properl

Flow Fusion 05-18-2004 09:57 PM

Ok than I'll mess with this file tonight. When most of my members are sleep.

sabret00the 05-18-2004 09:59 PM

yup as zack said, basically reapply changes you made to that file one by one, if that don't fix it, you'll have to reinstall

sad to say but link aint here atm and as he's the writer it's hard to just know what should be going wrong and where.

Zachery 05-18-2004 10:33 PM

Quote:

Originally Posted by sabret00the
yup as zack said, basically reapply changes you made to that file one by one, if that don't fix it, you'll have to reinstall

sad to say but link aint here atm and as he's the writer it's hard to just know what should be going wrong and where.

HEs around, but his school is finishing up this week (i think) and once finals are over we do have plans to resume development. and fix any known bugs

Flow Fusion 05-19-2004 02:48 AM

I failed....

Parse error: parse error in /home/giftedso/public_html/gs/includes/functions.php on line 1872

Fatal error: Call to undefined function: is_browser() in /home/giftedso/public_html/gs/global.php on line 59

y2krazy 05-19-2004 04:50 AM

It's working quite well over on my vB 3.0.1 forums. Just finished the installation! I'll let everyone know if there are any issues/errors as my members begin to use it. Thanks for the hack!

*clicks Install*

-y2k-

U-Dox 05-19-2004 02:21 PM

Quote:

Originally Posted by U-Dox
Aight This Is What It Said


<html><head><title>StreetVerbz Database Error</title><style type="text/css"><!--.error { font: 11px tahoma, verdana, arial, sans-serif; }--></style></head>
<body></table></td></tr></table></form>
<blockquote><p class="error">&nbsp;</p><p class="error"><b>There seems to have been a slight problem with the StreetVerbz database.</b><br />
Please try again by pressing the <a href="javascript:window.location=window.location;" >refresh</a> button in your browser.</p><p class="error">An E-Mail has been dispatched to our <a href="mailto:dbmaster@example.com">Technical Staff</a>, who you can also contact if the problem persists.</p><p class="error">We apologise for any inconvenience.</p><form><textarea class="error" rows="15" cols="100" wrap="off">Database error in vBulletin 3.0.1:

Invalid SQL: UPDATE user SET uttpoints=uttpoints+5.00, reputation=reputation- WHERE userid='1'
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 'WHERE userid='1'' at line 1

mysql error number: 1064


Can You See The Problem?


Can Someone Help Please

proxyMX 05-19-2004 03:33 PM

Quote:

Originally Posted by U-Dox
Can Someone Help Please

can someone help, im having an error saying No Actions found whenever i go anywhere on the shop yet the actions are enabled


All times are GMT. The time now is 10:55 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.02528 seconds
  • Memory Usage 1,918KB
  • 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
  • (3)bbcode_code_printable
  • (10)bbcode_php_printable
  • (13)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