Advertisement
Guest User

Untitled

a guest
May 20th, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. <?php
  2. /**
  3. * Custom WordPress configurations on "wp-config.php" file.
  4. *
  5. * This file has the following configurations: MySQL settings, Table Prefix, Secret Keys, WordPress Language, ABSPATH and more.
  6. * For more information visit {@link http://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php} Codex page.
  7. * Created using {@link http://generatewp.com/wp-config/ wp-config.php File Generator} on GenerateWP.com.
  8. *
  9. * @package WordPress
  10. * @generator GenerateWP.com
  11. */
  12.  
  13.  
  14. /* MySQL settings */
  15. define( 'DB_NAME', 'database_name_here' );
  16. define( 'DB_USER', 'username_here' );
  17. define( 'DB_PASSWORD', 'password_here' );
  18. define( 'DB_HOST', 'localhost' );
  19. define( 'DB_CHARSET', 'utf8' );
  20.  
  21.  
  22. /* MySQL database table prefix. */
  23. $table_prefix = 'wp_';
  24.  
  25.  
  26. /* Authentication Unique Keys and Salts. */
  27. /* https://api.wordpress.org/secret-key/1.1/salt/ */
  28. define( 'AUTH_KEY', 'put your unique phrase here' );
  29. define( 'SECURE_AUTH_KEY', 'put your unique phrase here' );
  30. define( 'LOGGED_IN_KEY', 'put your unique phrase here' );
  31. define( 'NONCE_KEY', 'put your unique phrase here' );
  32. define( 'AUTH_SALT', 'put your unique phrase here' );
  33. define( 'SECURE_AUTH_SALT', 'put your unique phrase here' );
  34. define( 'LOGGED_IN_SALT', 'put your unique phrase here' );
  35. define( 'NONCE_SALT', 'put your unique phrase here' );
  36.  
  37.  
  38. /* WordPress Localized Language. */
  39. define( 'WPLANG', '' );
  40.  
  41.  
  42. /* Absolute path to the WordPress directory. */
  43. if ( !defined('ABSPATH') )
  44. define('ABSPATH', dirname(__FILE__) . '/');
  45.  
  46. /* Sets up WordPress vars and included files. */
  47. require_once(ABSPATH . 'wp-settings.php');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement