Gossamer Forum
Home : Products : Others : Fileman :

Password feature not working

Quote Reply
Password feature not working
Hi,

I am trying to use the single user version of Fileman 1.0

I believe that, despite its being for only one user, script should seek password usre's password before showing the page! It is not!

I am using Apache 1.3.1 on Redhat 4.1 [2.0.34] I am accessing the server from behind a local cache server [squid 1.22]

Apache's htaccess features is enabled and .htaccess file DOES reside inside the directory where fileman.cgi resides. Permissions are appropriate.

My .htaccess file is:

AuthName restricted stuff
AuthType Basic
AuthUserFile /etc/httpd/users

require azfar

Any clue?

-
Azfar
Quote Reply
Re: Password feature not working In reply to
 
Quote:
AuthName restricted stuff
AuthType Basic
AuthUserFile /etc/httpd/users

require azfar

That should read:

AuthName "Restricted"
AuthType Basic
AuthUserFile /etc/httpd/users

<Limit GET PUT POST>
require azfar
</Limit>

Check out the apache docs for how to setup access control.

Cheers,

Alex