Click here to Skip to main content
15,896,063 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hey guys,
on my domain I set
PHP
$_SESSION['name'] = $rows['name'];

So now how can I transmitt the Session to the subdomain? I found no helping/working entry on google and I have no plan how to do this :S

Edit:
The domain and the subdomain are on the same server, for example: www.just.com and test.just.com
Posted
Updated 29-Mar-13 11:30am
v2

1 solution

The session itself has little to do with your domains.
1) The session is identified by a cookie with the session id (or passed in the url).
2) The cookie has to do with domains: you can make a cookie to be accessible in subdomains, but for that you will probably need to modify a php ini setting (session.cookie_domain)
3) And now let's suppose that the subdomain is hosted on the same server, and you don't need to share session data between hosts - you still have to be careful not to override gathered session.

Read these for more details, and you will get the point:
http://stackoverflow.com/questions/6318492/sharing-session-over-subdomains-in-php[^]
http://stackoverflow.com/questions/644920/allow-php-sessions-to-carry-over-to-subdomains[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900