first thing is check your IE security settings. If its an intranet,
you need to set it to whatever the highest setting people in the company will be using(which may make this prob worse lol)
make sure that the path and domain parameter of the cookie you are sending is for the same domain
if you send a cookie for
example.org
it may not work on
intranet.example.org
or even
http://www.example.org
if you specify
.example.org
(notices the leading .) it should work
another thing you may need to try is sending a p3p header along w/ the cookie
its not really the way the problem should be solved, but it usually works if the above is not the problem
Code: Select all
header('P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"');
check the headers that the server is sending on your dev box, and then the headers from the web accessible server(where ie is behaving)
compare them