Remove / Uninstall Subversion on Ubuntu Precise

Hello

I'd like to be able to enable automatic wordpress updates. The wordpress feature will not work if subversion is enabled or even installed on the server (my understanding of it).

So I'm wondering how do I now disable /uninstall subversion? I installed it on my server previously in order to make updating wordpress easier.

Thank you!

1 Reply

I've not come across this issue before. I have Subversion installed on my Linode and use WordPress's built-in automatic updates for security releases, everything works fine.

I use Subversion to add new WordPress installs because it's quick, but don't use it after that. Because of this I remove all the .svn folders immediately after installing WordPress - maybe this is your problem, the existence of .svn folders in the default WordPress folders?

If so, to remove them, cd to the root of your WordPress install and type this command:

find . -name .svn -print0 | xargs -0 rm -rf

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct