WordPress Error: Database Update Required
WordPress Error: Database Update Required
This is due to a missmatch between the databases versions you said you are using in the settings.
Please follow this steps:
- Go to
/wp-include/
folder and open theversion.php
. - Find the value for
$wp_db_version
, and write it down. - Now, open your database, check in the table called
wp_options
-
Find the
db_version
value:SELECT option_value FROM yourdatabase.wp_options WHERE option_name = db_version;
-
Those two values must be the same. Change it in the
version.php
file, not the database.
Source: http://wpquestions.com/question/showChrono/id/4151
Restarting php-fpm service helped me, it clears cache on restart
sudo service php5-fpm restart
Hope that helps some folks out there.
WordPress Error: Database Update Required
- Try clearing your browser cache
- The option db_upgraded isn’t getting set by the upgrade process.
Try this: go to/wp-admin/options.php
. Fill the fielddb_upgraded
with a0
(zero). Hit Save Changes.