Ok, that fixed it so that it's not erroring out anymore.... but now it's not changing all the bbcode to html. It's still outputting tags, like [ b] and [ /b] instead of < b> and < /b>. You can see what it's doing at
http://www.bane-online.com/new. Here's the latest version of the code...
PHP Code:
require('/u/htdocs/crucib1/vbulletin/includes/config.php');
require('/u/htdocs/crucib1/vbulletin/includes/db_mysql.php');
define('TABLE_PREFIX', $tableprefix);
$DB_site = new DB_Sql_vb;
$DB_site->appname = 'vBulletin';
$DB_site->appshortname = 'vBulletin (' . VB_AREA . ')';
$DB_site->database = $dbname;
$DB_site->connect($servername, $dbusername, $dbpassword, $usepconnect);
require_once("/u/htdocs/crucib1/vbulletin/includes/functions.php");
require_once("/u/htdocs/crucib1/vbulletin/includes/functions_bbcodeparse.php");
echo parse_bbcode2($row["pagetext"], 0, 0, 0, 1, 0, 1);
'
Thanks for the help!