Jun
01

Set up secret keys in WordPress

To make your wordpress blog more secure, you can set up some secret keys for your wordpress. Wordpress is itself very secure, but this makes it more secure.

It is very easy, follow the steps below:

1)     Open your wp-config.php file.

2)     You will find the below mentioned lines:

define('AUTH_KEY', 'put your unique phrase here');
define('SECURE_AUTH_KEY', 'put your unique phrase here');
define('LOGGED_IN_KEY', 'put your unique phrase here');
define('NONCE_KEY', 'put your unique phrase here');

3)     Add your secret keys here and save the file.

4)     WordPress has created a generator for these lines to assist people in creating good ones. Go to this site, and copy and paste the result into your wp-config file:
http://api.wordpress.org/secret-key/1.1/

Popularity: 28%

Related posts:
  1. An Example of MySQL Settings in wp-config.php file – WordPress Hello All,Below mentioned is an example of MySQL settings for...
  2. Integrating Plogger With your Wordpress Blog: Integrating Plogger With your Wordpress Blog: Step 1 Open the...
  3. How To Integrate BBPress With Wordpress MU? Hi, Here I have described how to integrate bbpress with...
  4. How To Disable Admin Bar Sitewide In Wordpress MU? Hi, To disable admin bar isitewide in wordpress MU we...
  5. How to view WordPress.com API key? Every user of WordPress.com gets a unique API key they...

Leave a Reply

You must be logged in to post a comment.