Solution1:
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 the version.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.