Htaccess and a form

Hi

im trying to put up a small form (a poll) on a secured area on my server. The area is secured by an .htaccess file:

------------------------------------
deny from all
allow from 192.164.134.2

AuthUserFile /home/sites/site7/.htpasswd

AuthGroupFile /dev/null
AuthName 'Authentification Required'
AuthPAM_Enabled off
AuthType Basic
<Limit GET>
require valid-user
</Limit>

<Files .*>
order allow,deny
deny from all
</Files>
satisfy any
---------------------------------

now when i use the form, it says forbidden (403), but when i remove the .htaccess file (so its unprotected) its works fine Htaccess and a form

does anybody know what i can do? Im sure the form (html) code is correct... i made thousands of forms already but here:

<form name="poll" method="POST" action="index.php">

so it works fine without the .htaccess file, but with the file it doesnt work.. but when i put up the .htaccess file and try it, it doesnt even ask for authorization either, it just shows 403

 

 

 

 

Top