I have a site at www.example.com (yes I do)
When the user signs in, it starts a session, drops a cookie.
I need the user to be signed in still, when they navigate to www2.example.com and www3.example.com etc.
But alas, the cookie doesn't exist on thosee subdomains. The user presumably has to sign in / start a session at each one separately.
The solution mentioned elsewhere is to add this to my .htaccess:
php_value session.cookie_domain .example.com
I had high hopes for that solution but it doesn't seem to work. I made that change, and still the PHPSESSID is not being sent when I request www2 or www3
I dunno what I'm missing here