Re: [PHP] session.use_trans_sid = 0 does not work!!!

2004-06-13 Thread Marcus Merz
Hi James, "James Harrell" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] [...] > If you want to forcefully remove this PHPSESSION (which is sometimes > a good idea since search engine spiders will catalog the links with > the session id if you don't remove it), try this: > > i

RE: [PHP] session.use_trans_sid = 0 does not work!!!

2004-06-10 Thread James Harrell
Hi Robert, The initial links have session id's appended since upon the very first entry into the site, no PHPSESSION cookie is available. PHP appends the session id in the event no cookies are available- it doesn't know yet whether you have cookies on or not. If you want to forcefully remove this

Re: [PHP] session.use_trans_sid question

2002-08-13 Thread Rasmus Lerdorf
You cannot do it inside the script as the trans-sid stuff happens before your script is executed. The setting is changed, so ini_set() is doing its job, it's just that it sets it too late. In your .htacess file, just do it per-location: php_value session.use_trans_sid 0 -Rasmus On Tue, 13 A

Re: [PHP] session.use_trans_sid

2002-06-29 Thread Dan Tappin
> On Saturday 29 June 2002 18:02, Dan Tappin wrote: >> I am setting up a login section of my site using sessions. I have the >> login working with and without cookies enabled. I do not want to restrict >> my users be requiring cookies. >> >> The problem is that I can't seem to get PHP to auto a