Permissions issue when trying to update WordPress

You need to… … have your files and folders owned by your user. If you have sudo privies with your SSH access this should be easy to accomplish. sudo chown -R user ./wordpress_directory … have your files and folders, at least the ones in wp-content, in the same group as the web server. Otherwise you … Read more

Release Model for WordPress?

When a major release is made, fixes are made to it, but it’s rare that fixes to older versions are made. It has happened before, but it should never be relied upon, and there are a lot of bugfixes that are never backported. Sometimes a version will be tagged before a major release that isn’t … 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

upgade python version using pip

pip is designed to upgrade python packages and not to upgrade python itself. pip shouldn’t try to upgrade python when you ask it to do so. Don’t type pip install python but use an installer instead.