Hi all I'm trying to get to grips with how to do basic HTTP authentication, with user details in a database. I'd like users to be able to access a particular URL with their username and password, which is stored as an encoded string.
So far it seems I have to use Zend_Auth_Adapter_Http_Resolver_Interface::resolve($username, $realm). Am I correct in saying that that function needs to return the user's password? How do I get around the fact that the password is encoded in the database? Thanks. - Neil
