I'm trying to set a cookie to apply over all hosts in my domain.
I have a settings file setting
$domain ="quietcare.inf o";
$cookieDomain = ".".$domain ;
Then I use that $cookieDomain as an argument in my set-cookie command.
But it doesn't seem to be working. My browser still shows the
cookie-set request as being just for the host, not for the domain. And
when I go to another server in my domain and look at the full request,
I don't see that cookie value as set.
What am I missing?
Does the domain arg only apply to stored cookies? (I read that in an
ASP document, it seemed horribly stupid, but still...) (My servers run
Linux.)
Thanks.
I have a settings file setting
$domain ="quietcare.inf o";
$cookieDomain = ".".$domain ;
Then I use that $cookieDomain as an argument in my set-cookie command.
But it doesn't seem to be working. My browser still shows the
cookie-set request as being just for the host, not for the domain. And
when I go to another server in my domain and look at the full request,
I don't see that cookie value as set.
What am I missing?
Does the domain arg only apply to stored cookies? (I read that in an
ASP document, it seemed horribly stupid, but still...) (My servers run
Linux.)
Thanks.
Comment