about search permissions on intermediate directories. I left the prefix of the message
as "denied" instead of "failed" to satisfy web searches.
The extended error text was added to 1.3.x but not trunk in
http://svn.apache.org/viewvc?view=revision&revision=99781
This plagues users on IRC!
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1031307 13f79535-47bb-0310-9956-
ffa450edef68
}
else if (APR_STATUS_IS_EACCES(rv)) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
- "access to %s denied", r->uri);
+ "access to %s denied because search "
+ "permissions are missing on a component "
+ "of the path", r->uri);
return r->status = HTTP_FORBIDDEN;
}
else if ((rv != APR_SUCCESS && rv != APR_INCOMPLETE)