Hi,
I am trying to use session_start() but there is no cookie written. What can be the problem? The header that I get from the script is:
As you see the cookie seems to be there but it isn't saved. Cookies are turned on in the browser. I wonder what the expires header is? That seems to be rather old...
I am trying to use session_start() but there is no cookie written. What can be the problem? The header that I get from the script is:
Code:
HTTP/1.1 200 OK
Date: Wed, 03 Dec 2003 17:05:13 GMT
Server: Apache/1.3.26 (Unix) PHP/4.2.2
X-Powered-By: PHP/4.2.2
Set-Cookie: PHPSESSID=705f6e9d103bd14781e71403f5ef8980; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
As you see the cookie seems to be there but it isn't saved. Cookies are turned on in the browser. I wonder what the expires header is? That seems to be rather old...