I am using Apache 2.2.2 (part of WAMP). I have a number of groups setup for controlled access. I wanted to add a single user to the permissions to single directory so I wrote something like this:
# htaccess for bcb wiki
AuthType Basic
AuthName "BCB User Password Required"
AuthUserFile c:/wamp/passwords/passwords
AuthGroupFile c:/wamp/passwords/groups
Require group special
Require user julie
Members of "special" are ok but the user julie is not recognised. If I add "julie" to the group "special" than all is ok so the username/password are valid. As this is a one-off requirement I don't want to add her to the group.
Any ideas why is doesn't work correctly?