Quantcast
Channel: phpBB.com
Viewing all articles
Browse latest Browse all 2802

phpBB Discussion • Re: Dealing with bot traffic

$
0
0
The second change is in append_sid (the root cause of it all) in functions.php.

Code:

[...]
This change means that people without sid in a cookie cannot have a session (in my mind there should never have been an append_sid function at all).
Thank you for this!

I am still seeing an sid on the faq link and the root of the breadcrumb... are these needed?

Should we modify this part too?
// Use the short variant if possible ;)
if ($params === false)
{
// Append session id
if (!$session_id)
{
return $url . (($append_url) ? $url_delim . $append_url : '') . $anchor;
}
else
{
return $url . (($append_url) ? $url_delim . $append_url . $amp_delim : $url_delim) . 'sid=' . $session_id . $anchor;
}
}

Statistics: Posted by JacobM — Thu May 01, 2025 7:17 am



Viewing all articles
Browse latest Browse all 2802

Trending Articles