Sound to me like you must have the:
define('CHDIR_PATH', '/path/to/forums/');
setup wrong in your vbconfig.php file, double check you have entered the correct path to your server
if you named your forums folder FORUM for example, looking at the path error your getting (I'm only guessing here). Try this!
define('CHDIR_PATH', '/home/rbruce/public_html/forum');
By the way, the part in the path name that says "rbruce", is that the PASSWORD you use to log on to your server, becuase thats what should go there, not you USERNAME logon. So if "rbruce" is your logon name for your server, that wrong, you need to put your password there instead!
So if you server password is "billy" and you named you vbfolder uploaded "forum". It should look like this:
define('CHDIR_PATH', '/home/billy/public_html/forum');
|