Easiest way to upgrade your wordpress installation
In a previous post I named few reasons for keeping your wordpress blog upgraded all the time. This is very important because you’re avoiding the latest exploits and probably lots of hours of tears and work :). Another thing you should do is to hide your wordpress version from the public. In case you aren’t up to date with your blog, they won’t know that. Now .. depending on your theme, that may be already hidden, but take a closer look just in case and remove it.
Ok … back to the topic. In this post I want to teach you how to upgrade your wordpress blog. That’s a pretty easy task. If you created your blog using fantastico, then you should go back there and find the appropriate button. It’ll do the job, there’s nothing else for you to do. If you followed my guide on how to install wordpress (or not :) ) and installed it with your own hands, you probably know what to do already. Simply go to wordpress.org/download, save the latest release on your PC, unzip it and finally upload it to your blog folder on your server (maybe site root, maybe not). After you’re done, go to your admin panel. It’ll say your database has to be upgraded if it’s the case (and it is when you upgrade from older versions to 2.7, it happened for all my blogs), just hit that button and you’re good to go.
That’s it :)
The good news is that from now on, wordpress has its own auto-upgrade feature embeded. For older versions, you should’ve had a plugin installed to do that, but from now on, you can simply go to the “Tools” menu and hit “Upgrade”. It’s pretty easy and intuitive so go ahead and try it.
Tagged with: how to upgrade wordpress • wordpress • Wordpress How To
Filed under: General • Wordpress How To • Wordpress Security
Like this post? Subscribe to my RSS feed and get loads more!




I would argue that the easiest way to upgrade is to use subversion from the command line. I know this option might not be available to some, but a responsible developer will use subversion (or another version control system) to manage his or her entire site.
svn co http://svn.automattic.com/wordpress/tags/2.7
will check out the code, then, when a new version comes out, one must simply do
svn sw http://svn.automattic.com/wordpress/tags/
All of the new files will be downloaded and old ones overwritten without harming anything else. Run the upgrade.php script from the web as normal to update the database, and you’re good to go.
True. However, this may sound like rocket science for the average user :)