Hello,
I am doing some authentication, it works fine
- I verify through isValid()
- store the data I want to persist using Zend_Auth's getStorage()->write(...)
- forward to the default (homepage) action
The data persists to this point, but when I move to another page, the data is lost.
Is this a common problem with a quick fix?
here's a snippet from my php.ini file
Code:
session.save_path = "c:\Temp"
; Whether to use cookies.
session.use_cookies = 1
;session.cookie_secure =
; This option enables administrators to make their users invulnerable to
; attacks which involve passing session ids in URLs; defaults to 0.
; session.use_only_cookies = 0
; Name of the session (used as cookie name).
session.name = PHPSESSID
; Initialize session on request startup.
session.auto_start = 0
; Lifetime in seconds of cookie or, if 0, until browser is restarted.
session.cookie_lifetime = 0
; The path for which the cookie is valid.
session.cookie_path = \
; The domain for which the cookie is valid.
session.cookie_domain =