Hi Andy:

On Wed, Jun 26, 2002 at 06:51:16PM +0200, Andy wrote:
> 
> I have written an own session management. Workes fine, but recently after
> more people signed up there has appeared an error. In some cases when people
> submit reports the userID cant be filtered out of the database (there is a
> special table handliing the sessions) There session seems still to be valid,
> just the user id is lost. The session id is stored in a cookie and the
> cookie expires after the user is closing the browser. Session life time is
> handeled server site.
> 
> It always works for me and the rest of the community. There are just a few
> folkes who are able to submit a report without their user id.

Are you SURE the SessionID is coming back from the browser in these
problematic cases?  Because, if it's not, the UserID couldn't be found, 
because there's no way to look it up.

But, I guess it is coming back, because you're saying the page is acting
as if it's still in the session.  BUT, the session may not really exist,
but a bug in your code makes it LOOK like it does.

If it's coming back, then you have a problem where your database
overwrites the UserID.  You'll have to debug that yourself.

Enjoy,

--Dan

-- 
               PHP classes that make web design easier
        SQL Solution  |   Layout Solution   |  Form Solution
    sqlsolution.info  | layoutsolution.info |  formsolution.info
 T H E   A N A L Y S I S   A N D   S O L U T I O N S   C O M P A N Y
 4015 7 Av #4AJ, Brooklyn NY     v: 718-854-0335     f: 718-854-0409

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to