I want to be able to upload files to the download folder from the admin site. I notice that the .htaccess of the download folder restricts me from doing this.

I just wonder how would I modify this .htaccess to allow media_manager.php (in the /admin folder) to upload music files into the download folder.

Here is the .htaccess:
#prevent directory browsing -- for security
IndexIgnore */*

AuthType Basic
AuthName "No access"
AuthUserFile .htnopasswd
AuthGroupFile /dev/null
Require valid-user

Thank you very much in advance

Dee