When I try to write a cookie, the php script does not generate an error of some kind but it does not save the cookie... Has anyone encountered this before? If so, what can I do to fix this problem?
This is a part of php.ini in case the problem is located here.. (altough I doubt it since everything looked ok to me)
[Session]
session.save_handler = files ; handler used to store/retrieve data
session.save_path = C:\PHP\sessiondata ; argument passed to save_handler
; in the case of files, this is the
; path where data files are stored
session.use_cookies = 1 ; whether to use cookies
session.name = PHPSESSID ; name of the session
; is used as cookie name
session.auto_start = 0 ; initialize session on request startup
session.cookie_lifetime = 0 ; lifetime in seconds of cookie
; or if 0, until browser is restarted
session.cookie_path = / ; the path the cookie is valid for
session.cookie_domain = ; the domain the cookie is valid for
session.serialize_handler = php ; handler used to serialize data
; php is
Any help is most welcome 🙂