Pablo
Pablo

Reputation: 6068

problem with setting a cookieless domain

Here is the header from firebug that shows the scope of the PHP Session cookie:

Set-Cookie PHPSESSID=f0e2dfe56cc78be718c8154ac80d1ae2; path=/; domain=pix-all.com

But still the PHP Session cookie is been sent for any requests to static.pix-all.com

Cookie PHPSESSID=f0e2dfe56cc78be718c8154ac80d1ae2;

What could be the problem?

Upvotes: 0

Views: 187

Answers (1)

Mark Baker
Mark Baker

Reputation: 212522

If the cookie is set for the domain pix-all.com, then it will always be sent in requests to static.pix-all.com because static.pix-all.com is a subdomain of pix-all.com

So what is the problem? You're having issues because the cookie works as it's supposed to?

Upvotes: 1

Related Questions