I have a staging site where I have secured it using .htaccess password.
However, as it's an eCommerce site, I need paypal's IPN to be able the communicate with my site.
I'm using the following .htaccess but it's not working. The password protect is still in effect.
Deny from all
Order deny,allow
AuthType Basic
AuthName "Restricted Area"
AuthUserFile "/path/to/htpasswd"
require valid-user
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{QUERY_STRING} ^paypalListener=paypal_standard_IPN$
RewriteRule .* - [E=test_uri]
</IfModule>
#Allow valid-user
Allow from env=test_uri
Satisfy any
Can anyone guide me on what is wrong here?