Date: 06/03/02
- Next message: Lenny Miceli: "[PHP] zlib double free bug and php question."
- Previous message: 1LT John W. Holmes: "Re: [PHP] Previous & Next Navigation"
- In reply to: Jason Dulberg: "[PHP] 1 session, 2 subdomains"
- Next in thread: Jason Dulberg: "RE: [PHP] 1 session, 2 subdomains"
- Reply: Jason Dulberg: "RE: [PHP] 1 session, 2 subdomains"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Mon, 3 Jun 2002, Jason Dulberg wrote:
> I am working on a sports website that will have a subdomain for each major
> sport. There is a login panel on the main domain that routes users to the
> appropriate subdomain depending on the sport that they are in. Everything
> seems to be ok with cookies (cookiedomain=.domain.tld) but I can't get it to
> work with sessions -- even if I pass the session id in the URL.
>
> In the login script, I define the session then route to the appropriate
> subdomain. This where the problem lies - after redirection, the session is
> lost. It appears that the session is defined for the domain name that the
> user signs in on - if I allow users to login on their given sport subdomain,
> the session works ok, but this doesn't work the way I'd like.
>
I'm guessing that your "redirection to the appropriate subdomain" actually refers to a different instance of the webserver potentially on a different machine? If so, then that's why "the session is lost". Sessions are maintained on a per server basis (am I correct here?)
Even so, you can redirect to a specific page in the appropriate sport tld and reconstruct/restart the session (I guess to that point you should only have a memberid after the authentication).
cheers,
thalis
> Any ideas on what I'm doing wrong?
>
> (I can post my login/session code if need be)
>
> Thanks for any suggestions!!
>
> __________________
> Jason Dulberg
> Extreme MTB
> http://extreme.nas.net
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: Lenny Miceli: "[PHP] zlib double free bug and php question."
- Previous message: 1LT John W. Holmes: "Re: [PHP] Previous & Next Navigation"
- In reply to: Jason Dulberg: "[PHP] 1 session, 2 subdomains"
- Next in thread: Jason Dulberg: "RE: [PHP] 1 session, 2 subdomains"
- Reply: Jason Dulberg: "RE: [PHP] 1 session, 2 subdomains"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

