Loosing sessions
Hi!
I'm using sessions on my site with the following configuration on php.ini:
session.save_handler = files
session.save_path = /tmp
session.use_cookies = 1
session.use_only_cookies = 1
session.name = PHPSESSION
session.auto_start = 0
session.cookie_lifetime = 0
session.cookie_path = /
session.cookie_domain =
session.serialize_handler = php
session.gc_probability = 1
session.gc_dividend = 100
session.gc_maxlifetime = 10800
session.referer_check =
session.entropy_length = 0
session.entropy_file =
session.cache_limiter = nocache
session.cache_expire = 180
session.use_trans_sid = 0
My users can start sessions and navigate the site with no problems for a while. After a couple of minutes (no more than 20), the session ID is lost and a new one is created, loosing all the session variables. This happens at any given time.
I haven't figured out the cause of this. When the current session is lost, a new one is generated, but the old session file at /tmp is still there with the complete variables info.
I'm using Linux RedHat 7.3 on Intel, Apache 1.3.27 and PHP 4.3.0
Any help will be apreciated.
Mauricio