Actually, this may work too for the cookie function problem. This is the function from 2.2.9, so if it was added in it should fix the problem. Just open your myvbindex.php file and look for:
require('./global.php');
Right below that Add:
PHP Code:
$bbcookiecache = array();
function get_bbarraycookie($cookiename, $id) {
// gets the value for a array stored in a cookie
global $HTTP_COOKIE_VARS;
global $bbcookiecache;
if (!isset($bbcookiecache[$cookiename])) {
$bbcookiecache[$cookiename] = @unserialize($HTTP_COOKIE_VARS["bb$cookiename"]);
}
return intval($bbcookiecache[$cookiename][$id]);
}
Let me know if that works.