RE: Sessions & AOL

2006-02-01 Thread Andy Matthews
I'm not explicitly storing the session info in cookies, but I wouldn't be surprised if that's how it's being stored. -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 01, 2006 10:42 AM To: CF-Talk Subject: Re: Sessions & AOL

Re: Sessions & AOL

2006-02-01 Thread Mike Chabot
Andy, If your servers are clustered it could be a problem since the IP address of an AOL user can change with every page request, and some load balancers use the IP address of the user when deciding which member of the cluster to direct traffic to. If you only have one server then I would check the

Re: Sessions & AOL

2006-02-01 Thread Mark Drew
Might be that you are storing the session in the cookie rather than on the server. AOL might be picky about what gets stored in a cookie. MD On 01/02/06, Andy Matthews <[EMAIL PROTECTED]> wrote: > Okay... > > I've got a login system using session variables to keep a user logged in > (all code at

Sessions & AOL

2006-02-01 Thread Andy Matthews
Okay... I've got a login system using session variables to keep a user logged in (all code at the bottom). The user logs in and I set some session variables, name, id, etc. At the top of each page is some code which check if they're logged in. My client is having issues with this and I believe tha