Quote:
Originally Posted by dxblouie
Works on 3.8.0 as follows:
install as normal
now in includes/init.php around line #400, look for the following:
Code:
$vbulletin->options['contactuslink'] .= $vbulletin->session->vars['sessionurl_q'];
}
}
// CSRF Protection for POST requests
if (strtoupper($_SERVER['REQUEST_METHOD']) == 'POST')
Replace with the following:
Code:
$vbulletin->options['contactuslink'] .= $vbulletin->session->vars['sessionurl_q'];
}
}
// memberbot mod:
if ($is_bot == 1) {
$vbulletin->userinfo['usergroupid'] = XX;
}
// End of memberbot mod
// CSRF Protection for POST requests
if (strtoupper($_SERVER['REQUEST_METHOD']) == 'POST')
i can see provisions for verifying the bot IP address in the mod code, but it doesn't seem to be active..
|
Can bot logged as member...?XX what put.....?