CGI Auth Problem

zolteran

New Member
Messages
2
Reaction score
0
Points
0
I have a problem trying to get nuke Sentinel to work I think it has something to do with the .htaccess and .staccess files

basicaly sentinel creates a user and pass in the .staccess file and then the .htaccess file should read that info and when user is promted for user and password it should allow access

however it just goes around in a loop

this is my .staccess file

mike:$2a$05$kum3cUFvB.SWVV92aDNaXeJFD6IkzW5isPoYEyZHsE34/GowVvYzW

and this is my .htaccess file

Options All -Indexes
DirectoryIndex index.php index.htm index.html

# -------------------------------------------
# Start of NukeSentinel(tm) admin.php Auth
# -------------------------------------------
<Files .ftaccess>
deny from all
</Files>

<Files .staccess>
deny from all
</Files>

<Files admin.php>
<Limit GET POST PUT>
require valid-user
</Limit>
AuthName "Restricted by NukeSentinel(tm)"
AuthType Basic
AuthUserFile home/zolt/public_html/.staccess
</Files>
# -------------------------------------------
# End of NukeSentinel(tm) admin.php Auth
# -------------------------------------------

is x10hosting setup to use CGI auth ?

thanks

mike
 
Top