.htaccess: Invalid command 'AuthGroupFile', perhaps misspelled or defined by a module not included in the server configurationThe above error appears if you use Apache authentication (via .htaccess/.htpasswd):
Code:
# cat .htaccess
AuthUserFile /usr/local/www/awstats/wwwroot/cgi-bin/.htpasswd
AuthGroupFile /dev/null
AuthName EnterPassword
AuthType Basic
Require user SomeUser
In order to fix this, add or uncomment the following line in apache's config file (if it was compiled with this option):
Code:
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so