I'm having exactly the same error message :
Fatal error: Call to a member function on a non-object in /path/class_bbcode.php on line 198
I'm trying to acheive the same thing : parsing bbcodes in posts that i am currently displaying outside the forum (non-vb.)
my code is :
PHP Code:
$cwd = getcwd();
$vbpath = $_SERVER['DOCUMENT_ROOT'] . get_option('vbb_VBRPATH');
chdir($vbpath);
require_once('./global.php');
chdir($cwd);
require_once($vbpath . '/includes/class_bbcode.php');
$bbcode =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
no errors displayed since i added the last line
@Augusto : i tried your test successfully.