Hi,
I have the followin setting in my php.ini:
session.save_handler = files
session.save_path = /tmp
session.use_cookies = 0
session.name = PHPSESSID
session.auto_start = 0
session.cookie_lifetime = 0
session.cookie_path = /
session.cookie_domain =
session.serialize_handler = php
session.gc_probability = 20
session.gc_maxlifetime = 21600
session.referer_check =
I will save the session at the server /tmp site. Now my problem is, i have to call session destroy to kill the session, even i close my browser. I do set teh expired time for and hour, but after few hours, it seem like still valid, and the gc_probability doesn't 'clean' it.
So, how can i set it automatically expired?
Thanks
Louis