Remove / Uninstall Subversion on Ubuntu Precise
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 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