Wordpress Error: Database Update Required

后端 未结 4 1523
攒了一身酷
攒了一身酷 2020-12-14 11:54

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

相关标签:
4条回答
  • 2020-12-14 12:09

    Restarting php-fpm service helped me, it clears cache on restart

    sudo service php5-fpm restart
    

    Hope that helps some folks out there.

    0 讨论(0)
  • 2020-12-14 12:09
    1. Try clearing your browser cache
    2. The option db_upgraded isn’t getting set by the upgrade process. Try this: go to /wp-admin/options.php. Fill the field db_upgraded with a 0 (zero). Hit Save Changes.
    0 讨论(0)
  • 2020-12-14 12:11

    This is due to a missmatch between the databases versions you said you are using in the settings.

    Please follow this steps:

    1. Go to /wp-include/ folder and open the version.php.
    2. Find the value for $wp_db_version, and write it down.
    3. Now, open your database, check in the table called wp_options
    4. Find the db_version value:

      SELECT option_value FROM yourdatabase.wp_options WHERE option_name = 'db_version';

    5. 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

    0 讨论(0)
  • 2020-12-14 12:30

    This is due to a missmatch between the databases versions you said you are using in the settings.

    Please follow this steps:

    1. Go to /wp-include/ folder and open the version.php.
    2. Find the value for $wp_db_version, and write it down.
    3. Open your database, check in the table called wp_options
    4. 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.

    0 讨论(0)
提交回复
热议问题