in reply to CGI::Session not keeping data

Did you check to see if the MySQL database is storing the session information? Do some manual selects to check.

Replies are listed 'Best First'.
Re^2: CGI::Session not keeping data
by Anonymous Monk on Jul 22, 2004 at 15:51 UTC
    Problem solved. Somehow during a recent upgrade to MySQL (I think) either the behavior of REPLACE INTO changed or the id column in my session table lost its UNIQUE status. Each call to $session->param() was adding a new row to the table. After making the id column a UNIQUE index everything started working properly again.

    --TWH