option in the docs page, like e.g. we did for SSLInsecureRenegotiation.
wrowe asks; you mean <Compatibility> tag? Yes, of course.
- *) core authnz: improve misleading error message. PR 38322.
- Trunk: N/A
- 2.2.x: https://issues.apache.org/bugzilla/attachment.cgi?id=25698
- +1: niq, pgollucci, trawick
-
*) mod_ldap: LDAP caching was suppressed (and ldap-status handler returns
title page only) when any mod_ldap directives were used in VirtualHost
context.
if (((access_status = ap_run_check_user_id(r)) != 0)
|| !ap_auth_type(r)) {
return decl_die(access_status, ap_auth_type(r)
- ? "check user. No user file?"
+ ? "check user. Check your authn provider!"
: "perform authentication. AuthType not set!",
r);
}
if (((access_status = ap_run_auth_checker(r)) != 0)
|| !ap_auth_type(r)) {
return decl_die(access_status, ap_auth_type(r)
- ? "check access. No groups file?"
+ ? "check access. "Check your 'Require' directive"
: "perform authentication. AuthType not set!",
r);
}
if (((access_status = ap_run_check_user_id(r)) != 0)
|| !ap_auth_type(r)) {
return decl_die(access_status, ap_auth_type(r)
- ? "check user. No user file?"
+ ? "check user. Check your authn provider!"
: "perform authentication. AuthType not set!",
r);
}
if (((access_status = ap_run_auth_checker(r)) != 0)
|| !ap_auth_type(r)) {
return decl_die(access_status, ap_auth_type(r)
- ? "check access. No groups file?"
+ ? "check access. "Check your 'Require' directive"
: "perform authentication. AuthType not set!",
r);
}