-2

I am hosting my website on site5. Some files have changed, and I use svn to checkin those changes from my development environment and from the website. My svn server is assembla. I am trying to commit files that are on my web hosting server (site5). I have configured the server for the private key and .subversion/config tunnel section too. But I still get this error

svn: Commit failed (details follow): svn: Server sent unexpected return value (405 Method Not Allowed) in response to MKCOL request for ''

I have tried most famous question for this issue. This did not work for me.

Edit :

  • SVN Server is assembla and the Site5 webserver is the client.
  • On the site5 webserver in ~/subversion/config under [tunnel] section I have site5 = /usr/bin/ssh -p 22 -q -l <loginid> -i <pathtoprivatekey>
  • Command I am trying `svn commit -m "message"
  • Also tried svn commit -m "message" svn+ssh://<username>/<domain>/<fullpath>
  • Both command same error
Siddharth
  • 123
  • 7

1 Answers1

3
  1. Title of your question unrelated to body - you have troubles with Assembla SVN, not with site5
  2. Assembla Subversion repository never was and isn't accessible with svn+ssh://, only https:// - Source/SVN - Source subtab always show URL of repository

https://subversion.assembla.com/svn/SPACENANE/ (f repository was not renamed by hand)

Lazy Badger
  • 3,137
  • 15
  • 13