vote up 3 vote down star
4

Hello I use php sessions (not cookies, except for session id cookie) for all user data, and when a user goes to their profile user.mydomain.com they are immediately "logged out" untill then remove the subdomain.

Is there a way to accept sessions from all domains as long as its *.mydomain.com

thanks!

flag

50% accept rate

2 Answers

vote up 3 vote down

Here are 3 options.

Place this in your php.ini:

session.cookie_domain = ".example.com"

In your .htaccess:

php_value session.cookie_domain .example.com

As the first thing in your script:

ini_set('session.cookie_domain', '.example.com' );
link|flag
Unfortunately all 3 failed to work, does there need to be a star * ? – Anthony Mar 14 at 0:11
Very strange, I've used the those methods before and they work fine. Do you by chance have Suhosin installed, I remember there be a setting that needed to be changed to allow this? If you don't, can you post more info about your install (eg. apache, lighttpd, php version)? – CTT Mar 14 at 0:25
vote up 0 vote down

Be sure to see this thread too, as it's related:

http://stackoverflow.com/questions/348282/php-cookie-domain-subdomain-control

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.