I'm running apache+php on a windows 98 machine. I can't seem to send headers whith my PHP script. Check out "http://24.65.39.168/webmail/session_test.php"
The headers spill out on the web pages. I think its because PHP always prints out: "Content-type: text/html" and a newline char. Is there some way to supress this (I tried using -q, didn't work)?
Please help!
check you php.ini have you set session.auto_start on
this will make apache to spill out header to set cookie
I made session.auto_start=1 in the php.ini file didn't work. by default, my installation of php prints out "Content-type: text/html" + CR, as soon as it's run. Because of the CR, the rest of the headers are ignored.