Alright for the 466 errors you gotta hardcode the directory data. For this example, I'll say our forums are on:
/home/joesmith/forums
Line 41 change:
Code:
chdir($_SERVER['DOCUMENT_ROOT'] . get_option('vbb_VBRPATH'));
To:
Code:
chdir('/home/joesmith/forums');
Line 43:
To:
Code:
$vwd="/home/joesmith/forums";
Line 60:
Code:
chdir($_SERVER['DOCUMENT_ROOT'] . get_option('vbb_VBRPATH'));
To:
Code:
chdir('/home/joesmith/forums');
Line 350:
Code:
require_once($vwd . '/includes/class_bbcode.php');
To:
Code:
require_once('/home/joesmith/forums/includes/class_bbcode.php');
Line 379:
Code:
chdir($_SERVER['DOCUMENT_ROOT'] . get_option('vbb_VBRPATH'));
To:
Code:
chdir('/home/joesmith/forums');
Line 466:
Code:
require_once($vwd . '/includes/functions_misc.php');
To:
Code:
require_once('/home/joesmith/forums/includes/functions_misc.php');