Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Have it working with unencrypted passwords but... It looks like setting EncryptPW => 1, sets it to use encrypted passwords when I create a new CGI::Session::Auth::DBI object. I generated a md5_hex encrypted password and updated the user db but it does not seem to work. When I set it back to EncryptPW => 0 (unencrypted) and put in a plain text password it works. Any ideas on what I'm missing here? Here is how I generated the md5 password -
use Digest::MD5 qw( md5_hex ); print md5_hex(guest);