Recently I moved one of the wordpress website from one web host to other. While migrating the website I found that the files were injected with javascript malware. On wp-content the injections were in the theme files and a few plugins, which I removed manually. For cleaning other files and folders I thought of a easy way, I downloaded the latest wordpress and replaced all files and folders. Except the wp-content
and wp-config.php
as I had cleaned them manually.
Guess what the website was working great with no malware. But when I tried to login to wordpress admin dashboard at yourdomain.com/wp-admin
. I got the below error message.
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 database update process may take a little while, so please be patient.
Update WordPress Database

I clicked on the “Update wordpress database” button but it did not fix the error. I searched through google and was lucky to find a solution.
The error message is due to database version mismatch, the db version on your mysql database “wp_options”
table does not match with the version mentioned on /wp-includes/version.php
. WordPress is not able to update the version as your version.php
file does not have write permissions.
Here are the steps to fix the error – Database update required
You need access to your website’s wordpress database and version.php file to fix the error. The steps are for a beginner, you can skip the steps you already know.
- Login to your
cpanel
(Usually the url isyourdomain.com/cpanel
)- Under databases click on
phpMyAdmin > Your site database > wp_options
- Browse the
wp_options
table to finddb_version
(option_name), note down theopton_value
againstdb_version
- As an advanced user you can skip the above step and use the below sql query, to directly retrieve the
db_version
. Note down thedb_version
value. SELECT option_value FROM yourdatabase.wp_options WHERE option_name = ‘db_version’;Note: you should change yourdatabase to your actual database name and if you’ve changed your db prefix during WP installation you should change wp_options to your prefix_options.
- Go to
cpanel > filemanager > public_html > wp-includes > version.php
- Open the file
version.php
to edit- Find the following “$wp_db_version” and replace the number to match it with what you noted at step 3 or 4.
- Save the file and visit
yourdomain.com/wp-admin
Your issue must have been fixed
Note: You can also fix this by changing the version.php file on your local system and replacing the file via FTP, rather than cpanel.
Hope this helped you fix the db update issue. Write on the comment section if this did not fix your problem. Also is there any other fix for this error.
Thank you for your excellent article on this topic. It is really helpful to have someone who has had experience with similar stuff to help with this undertaking. So again thanks for this wonderful article it’s save my lots of time.
Tried this but now im getting an error ‘Sorry, you are not allowed to access this page.’
Sorry, you are not allowed to access this page. is the error im recieving after doing this.. The credentials are already correct
Hi SolelyJen,
The error you are getting now could be possible due to various reasons. You should use WP_Debug to get a list of errors.
Once you know the errors, you can fix those.
Let me know if you found this helpful.
Thanks so much – worked like a charm