This is a sample htaccess for those user which dont want to 
allow access to the reports to everyone. copy it into the
php3 director and adapt the file to your system and to your 
needs. 

Dont forget to allow htaccess useag in the dir. ie via
the access.conf of Apache:

========= access.conf =======
<Directory /reports>
Options None
AllowOverride all
</Directory>
========= access.conf =======

Passwords were generated via the htpasswd command
delivered with Apache. This htaccess gains acces to
everyone from the local net (.gaudi.at) or to these
who have private access. 

========= .htpasswd  =======
AuthUserFile    /etc/httpd/conf/private-htpasswd

AuthType Basic
AuthName "Private place"

order deny,allow
deny from all
allow from .gaudi.at 212.17.78.238

require valid-user
satisfy any
========= htpasswd  =======


