PHP version 4.3.11
MySQL version 4.1.13-standard
Apache version 1.3.33 (Unix)
Operating system Linux
Turned off sessions but CMSSESSID still appears in News module output
Re: Turned off sessions but CMSSESSID still appears in News module output
Ok, I've guessed horribly wrong, then. 
-
Umer
Re: Turned off sessions but CMSSESSID still appears in News module output
wishy wrote: Ok, I've guessed horribly wrong, then.![]()
-
djnz
Re: Turned off sessions but CMSSESSID still appears in News module output
Unless you can change PHP configuration (and most hosts will not let you do that, even through .htaccess), the only way to get rid of those damn session IDs is this, as mentioned above:
ini_set('url_rewriter.tags', '');
Put that in include.php before the rest of the session stuff. You don't need to delete any of that, and cookie-based sessions will still work fine.
ini_set('url_rewriter.tags', '');
Put that in include.php before the rest of the session stuff. You don't need to delete any of that, and cookie-based sessions will still work fine.

