in reply to Re^4: CGI Application Authentication using multiple drivers
in thread CGI Application Authentication using multiple drivers

You write something like:

DRIVER => [ 'DBI', ... ], DRIVER => [ 'Authen::Simple::LDAP', ... ],

while the documentation suggests

DRIVER => [ [ 'Generic', { user1 => '123' } ], [ 'Generic', sub { my ($u, $p) = @_; is_prime($p) ? 1 : 0 } ] ],

Replies are listed 'Best First'.
Re^6: CGI Application Authentication using multiple drivers
by Prat824 (Acolyte) on Jun 25, 2010 at 18:43 UTC
    oh - much appreciated.. I had a brain paralysis by looking at the doc and my code for too long.