Guest User

Untitled

a guest
Nov 17th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. // ** MySQL settings - You can get this info from your web host ** //
  2. /** The name of the database for WordPress */
  3. define('DB_NAME', 'YOUR_DATABASE_NAME');
  4.  
  5. /** MySQL database username */
  6. define('DB_USER', 'YOUR_DATABASE_USERNAME');
  7.  
  8. /** MySQL database password */
  9. define('DB_PASSWORD', 'YOUR_DATABASE_PASSWORD');
  10.  
  11. You can actually go one step further in securing your site by generating a new set of WordPress Security keys. These keys help WordPress make your password and information stored in cookies more secure.
  12.  
  13. define('AUTH_KEY', 'PASSPHRASE');
  14. define('SECURE_AUTH_KEY', 'PASSPHRASE');
  15. define('LOGGED_IN_KEY', 'PASSPHRASE');
  16. define('NONCE_KEY', 'PASSPHRASE');
  17. define('AUTH_SALT', 'PASSPHRASE');
  18. define('SECURE_AUTH_SALT', 'PASSPHRASE');
  19. define('LOGGED_IN_SALT', 'PASSPHRASE');
  20. define('NONCE_SALT', 'PASSPHRASE');
Add Comment
Please, Sign In to add comment