Forum Moderators: phranque
The error is: .htaccess: SetEnv not allowed here
Is there something I have to change in Apache's Directory configuration?
Here's the Apache Directory config:
<Directory "whateverdir">
Options -Indexes FollowSymLinks
AllowOverride AuthConfig
Order allow,deny
Allow from all
</Directory>
Here's my .htaccess file:
AuthUserFile /filename
AuthName "authname"
AuthType Basic
<Limit GET POST>
require valid-user
</Limit>
<Files long_processing_time.php>
SetEnv no-gzip 1
</Files>
I hope this is something pretty basic ... Thanks for your help.
-sned