Well, let me give a little more detail. When a user logs in and selects to autologin until they specifically log out, their session id is set in a cookie and stored in a database table. Then a redirect header is sent and the PHP script exits (with exit😉 which should set the cookie. Then, the new page checks to see if the session id cookie is set. If it is, it compares it to the session ids in the database to verify if they are currently logged in. If not, they are still a guest user.
I know that cookies ARE getting set for the user - he sent me his cookie so I could troubleshoot. His cookie did have the session id but for some reason the code didn't see it. Normally, I would think I had a bug in the code, but for the rest of my members it works fine. Just two users have this problem and it is not with their individual member account setups because they can both log in fine from home.
Any more ideas? Can it still be some sort of caching/firewall issue?
Thanks.