I have an issue and unable to get the solution if anyone can help me please:
There is a subdomain abc.example.com having login link for SignIn once one signs In a session is created as:
session_start();
$_SESSION['client']="store my session value";
and in my file .htaccess of the same subdomain abc i have .htaccess file having the code as:
php_value session.cookie_domain ".abc.example.com"
I am doing mode rewrite so even it is working fine there and i can share the same session from one subdirectory to another even on root but it is being losed if i am accessing from one more inner folder inside abc subdirectory.
It works fine only upto the levels of subdirectories but if there are further folders inside, sessions are being losed
[edited by: lammert at 5:18 pm (utc) on May 3, 2010]
[edit reason] changed domains to example.com [/edit]