On Mar 2, 2011, at 07:11, Ivan wrote: > when i commit a project, this error is reporting > > > Morpheus-MacBook:teste ivan$ svn commit .htaccess --message teste > Sending .htaccess > Transmitting file data .svn: Commit failed (details follow): > svn: PUT of '/svn/BFC/!svn/wrk/c10110df-b4fb-41f3-a78e-a173166c1837/ > trunk/.htaccess': Could not read status line: Secure connection > truncated (https://svn.blucolordc.com.br) > > and in my apache log error, this error is reporting > > > [Wed Mar 02 10:03:24 2011] [error] [client 10.100.100.4] Could not > DELETE /svn/BFC/!svn/act/c10110df-b4fb-41f3-a78e-a173166c1837. [500, > #0] > [Wed Mar 02 10:03:24 2011] [error] [client 10.100.100.4] could not > abort transaction. [500, #21] > [Wed Mar 02 10:03:24 2011] [error] [client 10.100.100.4] Transaction > cleanup failed [500, #21] > [Wed Mar 02 10:03:24 2011] [error] [client 10.100.100.4] Can't remove > '/srv/svn/files/svn/BFC/db/transactions/28-1d.txn' [500, #21] > [Wed Mar 02 10:03:24 2011] [error] [client 10.100.100.4] Can't remove > file '/srv/svn/files/svn/BFC/db/transactions/28-1d.txn': Is a > directory [500, #21] > > why this happening?
Is it just files named .htaccess (or .ht*) that have this problem? If so, check your apache httpd.conf for rules blocking .htaccess (or .ht*) files. It is necessary for apache to block web clients from accessing .ht* files, as they might contain passwords or other security-related settings, and there is a common way of blocking access to these files that should not interfere with Subversion being able to manage those files (the way provided in most default httpd.conf files I've seen); maybe you're using a different way of blocking them that's causing this problem.