I'm currently working with a client right now that clicked to update a plugin on WordPress. He's unaware of what plugin it was that he updated because he's clicked update in the past for other plugins and they just updated, so he paid little attention to what it was he clicked.
His site is still up, but when I try to get into the back end using /wp-admin I'm hit with a message that states:
Database Update Required
WordPress has been updated! Before we send you on your way, we have to update your database to the newest version.
The update process may take a little while, so please be patient.
Update Wordpress Database
When I click on the button that says "Update WordPress Database" it does nothing. The browser spins and then shows me a blank white page with Wordpress at the top. I'm at a loss because I can't even login, it doesn't give me the option.
Any thoughts on what is happening? Thanks a bunch in advance for the assistance.
Restarting php-fpm service helped me, it clears cache on restart
Hope that helps some folks out there.
This is due to a missmatch between the databases versions you said you are using in the settings.
Please follow this steps:
/wp-include/
folder and open theversion.php
.$wp_db_version
, and write it down.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
/wp-admin/options.php
. Fill the fielddb_upgraded
with a0
(zero). Hit Save Changes.This is due to a missmatch between the databases versions you said you are using in the settings.
Please follow this steps:
/wp-include/
folder and open theversion.php
.$wp_db_version
, and write it down.wp_options
Find the db_version value:
Those two values must be the same. Change it in the
version.php
file, not the database.