PressTigers

Changing the WordPress Database Prefix to Increase Website Security

Your whole website depends on the WordPress Database, which is the ultimate target for hackers. During installation, website owners forget to change the default prefix wp_. In this article, you will learn the easiest way to protect your WP database by changing the default prefix.

All you need to do is replacing the default prefix wp_ with a unique prefix, for example my_cu232302om_. In this way, you can increase your website security as now it will be difficult for the hackers to find the unique prefix.

To replace the default prefix with a unique prefix, you need to follow the steps mentioned below:

  1. First of all, take the backup of your WordPress database. For this, you can utilize BackupBuddy plug-in available at WordPress repository.
  2. After that, you need to turn on the maintenance mode while changing the prefixes so that the user can be redirected to a temporary maintenance page. To do so, you can install any plug-in available at WordPress repository.
  3. To change Table Prefix, you need to go to WordPress root directory and open wp-config.php file. From this file, you can change the table prefix line $table_prefix = wp_ with the custom prefix like $table_prefix = my_cu232302om_. You can only change it with numbers, letters and underscores.
  4. In order to change all database table names, you need to access your database first via phpMyAdmin or SQLyog. In this way, you will be able to change database table names with custom prefix that you have already replaced in wp-config.php. But if you are using cPanel WordPress hosting, then you can find phpMyAdmin link in your cPanel.
  5. Changing table names manually is not a good practice. You can run SQL queries after clicking on the SQL tab in phpMyAdmin. Additionally, you can add lines for other plug-in tables. Following are the sample queries generated for WordPress default tables:











  6. Now you need to replace some prefixes in the options table. For this, run the following query and replace Theme with the new prefix:
  7. The next step is to change the prefix in usermeta table. To do so, run the following query:
  8. The final step is to take the backup of your changed WordPress database and test it. It should work fine now.

User Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

    Get in Touch