[Catalyst] C:P:Authentication upgrade
    Chris Devine 
    chris at vistaeng.homeip.net
       
    Wed Aug 26 17:00:32 GMT 2009
    
    
  
Hello all,
Is anyone having trouble with clear passwords since this morning's update of
C:P:Authentication to ver 0.10014?
I have two instances that have stopped working. Changing to none works ok.
Where have I gone wrong?
Thanks,
Chris
use Catalyst qw/
        Authentication
        Authentication::Credential::Password
        Authorization::Roles
        Authorization::ACL
        /;
__PACKAGE__->config( 'Plugin::Authentication' =>
{
    default_realm => 'members',
    members => {
        credential => {
            class => 'Password',
            password_field => 'password',
            password_type => 'clear'
        },
        store => {
            class => 'DBIx::Class',
            user_class => 'JDDB::tblUser',
            id_field => 'id',
            role_column => 'roles',
        }
    }
});
    
    
More information about the Catalyst
mailing list