Re: [PHP] maintaining session information

2007-08-16 Thread Vic Agnews
Thanks again for the reply ... i will look into session_set_save_handler. I also did some research on SSO and OpenID (phpMyID) ... sounds like an interesting concept! - Vic On 8/16/07, Chris <[EMAIL PROTECTED]> wrote: > > Vic Agnews wrote: > > Thanks for the suggestions guys I appreciate the

Re: [PHP] maintaining session information

2007-08-16 Thread Chris
Vic Agnews wrote: Thanks for the suggestions guys I appreciate the help! I guess I'll look into creating a custom session handler. Any good references? http://php.net/session_set_save_handler shows an example. How my current setup works is, there's session information for sub-domain1.dom

Re: [PHP] maintaining session information

2007-08-16 Thread Vic Agnews
Thanks for the suggestions guys I appreciate the help! I guess I'll look into creating a custom session handler. Any good references? How my current setup works is, there's session information for sub-domain1.domain.com stored in a cookie and I want sub-domain2.domain.com(which currently does

Re: [PHP] maintaining session information

2007-08-16 Thread Chris
Vic Agnews wrote: is there a way we can maintain session information across two sub-domains (on two different servers though) ... kinda like how google does it? Might have to use a 3rd party cookie & possibly a custom session handler. A cookie created on 'domain.com' cannot be read by any sub

Re: [PHP] maintaining session information

2007-08-15 Thread Nathan Nobbe
you can do whatever you want w/ a custom session handler, just so long as you implement all the methods. you could for instance have the session handler do network i/o to a 'session box' or something. thats my initial guess at a solution. -nathan On 8/15/07, Vic Agnews <[EMAIL PROTECTED]> wrote:

[PHP] maintaining session information

2007-08-15 Thread Vic Agnews
is there a way we can maintain session information across two sub-domains (on two different servers though) ... kinda like how google does it? - vic