I am currently storing the session hash/login info (userid, session hash,
host, etc.) in the db and send it to the next domain in the redireted URL.

How would the handler work if no session info isn't being passed to the
subdomain?

Thanks!

Jason


> From: Cal Evans [mailto:[EMAIL PROTECTED]]
>
> Store your session information in a database. Assign it an ID and
> send that
> ID to the cookie or the URL in the new domain.  Then you can
> write a session
> handler that retrieves the session info form the database.
>
> =C=
>
> *
> * Cal Evans
> * Journeyman Programmer
> * Techno-Mage
> * http://www.calevans.com
> *
>
>
> -----Original Message-----
> From: Jason Dulberg [mailto:[EMAIL PROTECTED]]
> Sent: Monday, June 03, 2002 2:13 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] 1 session, 2 subdomains
>
>
> 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.
>
> 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

Reply via email to