I'm using sessions with cookies to handle user authentication and all of that usual stuff. The sessino is expiring after a set timeout period which I need to increase, but I'm not sure how. phpinfo() shows the following settings for my php installation:
Directive Local Value Master Value
session.auto_start Off Off
session.bug_compat_42 On On
session.bug_compat_warn On On
session.cache_expire 180 180
session.cache_limiter nocache nocache
session.cookie_domain no value no value
session.cookie_lifetime 0 0
session.cookie_path / /
I checked, and my site is definetly using cookies, and the cookie is set to expire at the end of the session, but how do I make the session last longer?
Aaron