Posted by Jeff on 01/04/07 23:02
See my post below
"Rik" <luiheidsgoeroe@hotmail.com> wrote in message
news:e7cab$459d7add$8259c69c$13113@news2.tudelft.nl...
> Jeff wrote:
>> php version 5.2.0
>>
>> From http://no.php.net/session I've read that a session is either
>> stored in a cookie on the user side or is propagated in the URL.
>
> Or a POST value.
>
>> So if the session below (see code example below) isn't propagated in
>> the URL then it's stored in a cookie?
>
> Or not/not at all. No way to tell with this portion of the code. Check
> your
> requests and answers to the site. If you're using Internet Explorer,
> Fiddler is an invaluable tool. Likewise with LiveHTTPHeaders for Firefox.
>
>> And also I'm wondering about how can I set the expire time of this
>> cookie?. I mean I didn't use setcookie to create this cookie...
>
> session.gc_maxlifetime for expiring session
> session.cookie_lifetime for expiring session cookie
>
> Check the values in Runtime Configuration on the url you gave us. It's all
> there.
> --
> Rik Wasmus
>
>
Thanks for your reply
I tryed to set the expire time of the cookie in my app but I got a compile
error:
session.cookie_lifetime = 2;
Parse error: parse error, unexpected '='
any suggestions?
Jeff
[Back to original message]
|