PDA

View Full Version : Fatal error: Call to undefined function fetch_tag_list() (showthread, PM)


thomasarie
08-03-2010, 04:16 AM
Hello,

I didn't do any modifications on my forum. Currently, it's using (vBulletin 3.8.4 Patch Level 2).

When I go to single thread view (showthread.php), I got this error:

Fatal error: Call to undefined function fetch_tag_list() in /home/XXXXXX/public_html/showthread.php on line 1046

Also, when I want to read a private message, also got this error:

Fatal error: Call to undefined function fetch_tag_list() in /home/XXXXXXXX/public_html/private.php on line 1527

Anyone having ideas to solve this issue? :(

Boofo
08-03-2010, 05:19 AM
Looks like you have a plugin with bbcode not playing nice somewhere.

thomasarie
08-03-2010, 06:53 AM
Thank you...

I have uninstalled recently installed plugins. So, it should be in the same condition when my forum works. BUt still, not working :(

Any recommendation about the "emergency solution" for this issue? Thank you.

This is the showthread.php file


$postbit_factory =& new vB_Postbit_Factory();
$postbit_factory->registry =& $vbulletin;
$postbit_factory->forum =& $foruminfo;
$postbit_factory->thread =& $thread;
$postbit_factory->cache = array();
$postbit_factory->bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list()); // LINE 1046


From the admin area, when I go to "BB Code Manager", I go this:

Fatal error: Call to undefined function fetch_tag_list() in /home/XXXXXXX/public_html/admincp/bbcode.php on line 324

Boofo
08-03-2010, 07:09 AM
Try disabling all your plugins and see if that fixes it. Then re-enable them one by one to see which one might be the culprit.

thomasarie
08-03-2010, 08:00 AM
I have disabled all plugins, including adding define('DISABLE_HOOKS', true); in configuration file.

But still, no luck :(

Boofo
08-03-2010, 08:46 AM
Then it must be a bad bbcode.

thomasarie
08-03-2010, 08:52 AM
So, what is the best way to deal with this? Empty the vb_bbcode? Or...?
I have Uninstalled all plugins/products. And still, got the error. :(

Boofo
08-03-2010, 10:40 AM
I'm stumped on this one as I have never run into that before.