I have to change
<FilesMatch "*">
allow from all
</FilesMatch>
to
<Files "*">
allow from all
</Files>
else my server (Apache/2.0.54) would tell me there is a misconfiguration error and refuse to do anything.
(((aside, there is a usability bug in this entry form. If I hit [enter] while cursor is in the 'Reported By' field I get taken to the ' Choose a new form template' page instead of saving)))
<Files "*"> is not valid syntax on 1.3 0r 2.0; it has to be <Files ~ "*"> or <FilesMatch "*">. What error does Apache give you when you run
apachectl testconfig
?
TWiki:Main.GabrielAraujo
also had problems with Files/FilesMatch; here's his recommended patch:
Index: .htaccess.txt
===================================================================
--- .htaccess.txt (revision 4449)
+++ .htaccess.txt (working copy)
@@ -74,6 +74,6 @@
require valid-user
</FilesMatch>
-<FilesMatch "*">
+<FilesMatch ".*">
allow from all
</FilesMatch>
in SVN:4455