Hi
I am using PHP4 on a Cobalt Linux box. I turned on the session managent and set a timeout value of 300 seconds.
My corresponding variables in php.ini are
session.auto_start = 1 session.cookie_lifetime = 300
After login, I set a session variable and redirect to a main page. At 299th second, I submit a page, which checks for the existense of the session variable. Since it is not timed out, I echoed the value of the variable.
At 301 second, I try to submit the same page again. This time the session variable is no more there.
I thought since I submitted my page at 299th second, my session variables should be available for another 300 second. But it is not.
Is that any thing special I have to do to get an another extension of 300 seconds.
Thanks
Dharani Ramamoorthy