Quote:
Originally Posted by Lee G
Same problem being experienced as Simon above
|
Quote:
Originally Posted by Simon Lloyd
Eric, on your new release i am getting some blocked which show UserId: as blank and the exact same IP but a slightly different GET does not display UserId:
Is there a possibilty fix that, they're obviously not users but must be delivering a call that is mimicking a user but there's no confirmed login...etc, i might be talking twaddle as i don't understand the GET and all the garb that follows it but i hope you get the gist 
|
Hmm. Could you try something for me? Edit `/includes/functions_vb_badbehavior.php` and replace the `bb2_log_userid` function with:
PHP Code:
// Determines if vB Bad Behavior has blocked a user request
// Checks to see of userid is present in the Cookie header
function bb2_log_userid($headers)
{
if (!empty($headers))
{
$_tmp = explode("\n", $headers);
$_tmp = implode('', array_filter($_tmp, '__walker'));
$_tmp = str_replace(';', '&', $_tmp);
if (empty($_tmp))
{
return false;
}
parse_str($_tmp);
$userid = COOKIE_PREFIX . 'userid';
return iif($$userid > 0, $$userid, false);
}
return false;
}