I can't commit an .htaccess
file to a subversion server, using http protocol. Some tips about this issue:
- We can import this file when we are creating repository, but we can't commit changes to it.
- We can commit changes with a Tortoise client on a windows machine.
- We are not able to commit changes using command-line subversion client, on a ubuntu machine.
I made some googling and also looked the suggestions provided here at stackoverflow, without sucess for now.
I have changed this apache directive:
<Files ~ "^\.ht">
Order allow,deny
Deny from all
</Files>
To:
<Files ~ "^\.ht">
Order allow,deny
Allow from all
</Files>
But no success. Also I have change the AllowOverride directive to all, without success too.
Any suggestions are welcome,
Thank you very much.