How to create a more secure WordPress installation

If you have not installed your WordPress yet, it is a good idea to change the default database prefix before making the installation. You can easily do this by modifying the following line in the wp-config-sample.php file;

$table_prefix  = 'wp_';

Change it to something more complex, for example:

$table_prefix  = '1w27p_';

Once you make this change, rename wp-config-sample.php to wp-config.php and proceed with the WordPress installation.

This can be done also by using the WordPress installation web interface. You should simply enter the desired database prefix in the Table Prefix field of the web installer interface.

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to Leverage Browser Caching

Add these rules to your .htaccess file in order to reduce the load times of web pages by storing...

Why BackupBuddy fails to send backups to a remote server

When backing up to a remote server, the successful completion of the process relies on many...

How to Disable Theme Editor and Plugin Editor in WordPress Admin Panel

WordPress allows you to edit your plugin and theme files directly through its admin panel....

How to Modify my Title Tag in WordPress

To modify the title tag of your index page you need to login to the WordPress admin area and go...

How to Change my WordPress Subheading

The majority of WordPress themes take the subheading text from your blog's tagline. To edit it,...