in reply to [OT?] dropin apache basic auth replacement

If you want to use cookies for authentication, then Apache::AuthCookie makes a good base for the mod_perl authentication handler.

It is a base class and requires defining code to create and validate the cookies. There are existing modules that lookup users in the database and validate cookies based on hashes (Apache::AuthCookieDBI).

  • Comment on Re: [OT?] dropin apache basic auth replacement

Replies are listed 'Best First'.
Re: Re: [OT?] dropin apache basic auth replacement
by geektron (Curate) on Feb 21, 2004 at 04:21 UTC
    this *totally* looks like the ticket. thanks!