Just use the code, I believe provided somewhere in this topic, that would switch off sessionid for the bots only...If I recall correctly that code is based on "treat bots as members" mod or something like that..
Sorry, I don't have time at the moment to be more specific, but it's there
Thanks, Vano, but that solution works only for search-bots, and as far as I know - even they are still getting sessionids on their first visit...not to say about the simple visitors...
And I want to get rid of that sessionid
completely, so theat nobody could never see it again
I tried different methods, and must say now, that right now I've just undone the changes in includes/sessions.php, which i described here:
http://www.4homepages.de/forum/index.php?topic=6729.msg144014#msg144014that is - I've made it look like:
if ($this->mode == "get" && strstr($url, $this->session_id)) {
$url .= strpos($url, '?') !== false ? '&' : '?';
$url .= SESSION_NAME."=".$this->session_id;
}
if (!empty($l)) {
$url .= strpos($url, '?') ? '&' : '?';
$url .= "l=".$l;
}
And all the sessions are gone now!
I really do not know, maybe this snippet of code is wrong in some way, inappropriate or something else, but right now ny site works fine and the sessionids' are gone - so it turned out to be a solution for me.
So - if someone wants to get rid of sessionsids' completele - You should probably try it as well