Kai Schr�der wrote:

> > Could you try adding
> >
> > else ap_log_rerror(APLOG_MARK, APLOG_DEBUG | APLOG_NOERRNO,
> > rcfg->req, "Midgard: no basic auth found, trying cookie auth");
> 
...
> It looks like the same as before ;-(

This would indicate that mod_midgard didn't even attempt to
authenticate, or accepted the authentication. To make sure which,
could you add

                ap_log_rerror(APLOG_MARK, APLOG_DEBUG | APLOG_NOERRNO,
                              rcfg->req, "Midgard: welcome user '%s'",
                              username);

between

            && ((reason = mgd_auth(rcfg->mgd, username, password)) > 0)) {
and
                return username;

in verify_user?

Could it be that other directives are enforcing apache-native
authentication, and gets rejected? Any <Files>, <Directory> or
<Location> directives that could be triggering?

Emile


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to