Log in

View Full Version : [vB 3.6.0] Class 'vBulletinHook' not found in ...


4yBak
08-29-2006, 11:59 AM
Hi. When I try parse bb-codes I get this error (I use vB 3.6.0)
Fatal error: Class 'vBulletinHook' not found in /home/web/www/board/includes/class_bbcode.php on line 2339

What I do:
$parser = & new vB_BbCodeParser($vbulletin, fetch_tag_list());
...
$thread_text = $parser->do_parse($lastx_thread['pagetext'], 0, true, true, true, true, 0);

How to fix it?

4yBak
08-31-2006, 05:21 PM
any idea?

4yBak
12-17-2006, 12:51 PM
I steel need solution :(

LBmtb
12-21-2006, 01:45 PM
Well for one thing it doesn't look like "/home/web/www/board/includes/class_bbcode.php" is the correct path. Well, it might be but it doesn't sound like it.

phyrex1an
12-22-2006, 10:08 PM
Seems as you don't have the class_hook.php included. Include it. Or have an class like this:

class vBulletinHook
{
function fetch_hook()
{
return false;
}
}

if you don't need the hook system.