upgrade - Stuck on Database Update Required after downgrading to 4.9.9 from backup

admin2025-06-04  0

I used BackupBuddy to revert the database and overwrote the wordpress files of version 5.0.2 with 4.9.9. However I can't use the admin without the Database Update Required screen blocking me. How to i stop this upgrade from happening?

I used BackupBuddy to revert the database and overwrote the wordpress files of version 5.0.2 with 4.9.9. However I can't use the admin without the Database Update Required screen blocking me. How to i stop this upgrade from happening?

Share Improve this question asked Jan 3, 2019 at 12:10 snowliondevsnowliondev 631 silver badge4 bronze badges 3
  • Alternatively, you can disable automatic updates in WordPress by adding this line of code in your wp-config.php file: 1 define( 'WP_AUTO_UPDATE_CORE', false ); – vikrant zilpe Commented Jan 3, 2019 at 12:12
  • Have you considered using 5.0 but using the classic editor plugin? You don't have to use the new block editor with 5.0 if it isn't for you – Tom J Nowell Commented Jan 3, 2019 at 12:16
  • To clarify I think the issue is caused by left over files (perhaps an upgrade trigger) from 5.0.2 that are not normally there for 4.9.9. It is not an automatic security update it it is some something telling wordpress the database needs to be upgraded even though I've replaced the files with 4.9.9 and downgraded the database. – snowliondev Commented Jan 3, 2019 at 12:25
Add a comment  | 

1 Answer 1

Reset to default -1

You are facing the issue due to the different database versions. Please, follow this steps to fix the issue:

  1. Head to /wp-include/ folder.
  2. Open the version.php file.
  3. Find the value for $wp_db_version.
  4. Open your database. Find wp_options.
  5. Use the following line to identify the value of db_version:

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

The values of $wp_db_version and db_version must be the same. Make sure that you make the change in the version.php file, but not the database.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749048930a315919.html

最新回复(0)