FASHerman Thanks! One small note... Your code change nearly did it. It also brought on "Parse error: parse error, unexpected T_STRING ...."
To correct goto top of you
vbugs.php and add an additional line...
FIND
Code:
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'vbugs');
Add this right bellow
Code:
define('TABLE_PREFIX', 'vb3_'); //Your table prefix
That corrected things for me.