How do WordPress veterans deal with the issues of upgrading WordPress?

“the boring work of backup”… Backups may be boring, but they are essential and gives you a fallback position in case things go wrong. Without backups, you’re essentially playing Russian roulette with your site. It doesn’t even take very long, and reverting isn’t horrible or awful, it’s pretty easy. WP veterans take backups, test upgrades … Read more

Update WordPress with SFTP instead of FTP

Configuration instructions in Codex on Enabling SSH Upgrade Access recommend either: Using SSH SFTP Updater Support plugin from official repository. Using built–in SSH2 support, which requires the PECL SSH2 extension installed on the server. It used to refer to this tutorial: Using SSH to Install/Upgrade in before, which might be of use.

Not able to access admin panel after updating WordPress database fails

The problem, it turns out, was that the db_version field in the wp_options table and the wp_db_version variable in the file /wp-includes/version.php didn’t match. In my case (an upgrade to 3.5.2) the database showed “22441” while the PHP file showed “22442”. Changing the number in the database to “22442” solved the issue. I’m not quite … Read more