The upgrade went great, spent about 10 minutes on everything. Here’s my version of a quick guide, assuming you have SSH access. Start off by disabling all your plugins through the wordpress administration panel and doing a complete backup (including database). Then load up your putty or whatever SSH client you are used to. My wordpress is running from /home/kovshenin/wordpress/ and here is what I did:
cd /home/kovshenin wget http://wordpress.org/latest.tar.gz gunzip latest.tar.gz mkdir wp27 tar -xvf latest.tar -C ./wp27
This is to download the latest version of wordpress from the official wordpress resource, unzip it (gunzip) and extract (tar) to /home/kovshenin/wp27.
Next, just like the wordpress upgrade guide said, remove your wp-admin and wp-includes directories, and then copy the new files to the old location:
cp -R wp27/wordpress/* wordpress
You’re almost done. Launch the database update script by browsing to domain.com/wp-admin, and voila! Make sure you update all the plugins that you used and re-enable them. I’m just lovin’ my new dashboard!
Regards!