I use the JQuery plugin Uploadify for uploading files. It works fine in all browsers. If however I imlement a passwort protection via .htaccess like this
AuthType Basic
AuthName "Restricted Files"
AuthUserFile /my/path/to/.htpasswd
AuthPGAuthoritative Off
Require user dev
uploadify stops working in Firefox. In Chrome it still works.
In Firefox the file select box works, but after I selected a file the progress bar does stay at 0% and the file is not uploaded to the server.
I guess the issue is somewhere with flash on password protected sites. Any ideas how I can fix this, without removing the password protection?
I ended up excluding the uploadify directory from authentication (so everything is still password protected, except for the file upload).
To do so, I created a .htaccess file within the uploadify directroy with this lines:
This article helped a lot:
http://brett.batie.com/software-development/password-protect-all-but-one-file-htaccess/