Hi,
I've installed the jigoshop plugin and it's really cool.
But I have one problem.
I put an htaccess and htpsswd to my wp-admin folder. Everything is working in the correct way, til I want to finalise my command. When I clic on this button after adding an item in the cart, I have an alert that I need to give a user and password to continue. (if I'm logged in, it won't happened). So I try to delete my htaccess and htpsswd on my admin folder, and in that case, I can pass my command, no alert.
So my question is: must I put something in the htacces file, to let the plugin working ?
Here is what I have on my htaccess file in the wp-admin folder :
"AuthName "Entrez l'utilisateur et le mot de passe pour vous connecter"
AuthType Basic
AuthUserFile "/home/httpd/vhosts/stezen.ch/httpdocs/blog/wp-admin/.htpasswd"
Require valid-user"
Here is what I have on my htaccess at the root of my wordpress folder :
"# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
# END WordPress"
If someone has any clue, thank you so much.