--- Rick <[EMAIL PROTECTED]> wrote: > I'm having problems with > MasonX::Request::WithApacheSession (using > Apache::Session::MySQL backend). The session is not > being updated, so > I can't save any data to it. I verified this by > looking at the mysql > logs.
Are you timestamping your session each time you updated it? it only updates if you change someting in top level of session hash, thus usually you timestamp the session in top level when updating it. $session->{hash}->{key} = $new_val ; # won't cause update $session->{hash} = { key => $new_val }; # causes update cause hash address changed in top level. See docs Apache::Session docs for details about this. Other than this I've never had this problem. Don't use mason though. HTH Discover Yahoo! Find restaurants, movies, travel and more fun for the weekend. Check it out! http://discover.yahoo.com/weekend.html