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
Restarting php-fpm service helped me, it clears cache on restart
sudo service php5-fpm restart
Hope that helps some folks out there.
/wp-admin/options.php
. Fill the field db_upgraded
with a 0
(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 the version.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
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 the version.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.