wp-config.php


SUBMITTED BY: Guest

DATE: Dec. 4, 2013, 3:41 p.m.

FORMAT: PHP

SIZE: 1.8 kB

HITS: 1230

  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. /* MySQL settings */
  13. define( 'DB_NAME', 'database_name_here' );
  14. define( 'DB_USER', 'username_here' );
  15. define( 'DB_PASSWORD', 'password_here' );
  16. define( 'DB_HOST', 'localhost' );
  17. define( 'DB_CHARSET', 'utf8' );
  18. /* MySQL database table prefix. */
  19. $table_prefix = 'wp_';
  20. /* Authentication Unique Keys and Salts. */
  21. /* https://api.wordpress.org/secret-key/1.1/salt/ */
  22. define( 'AUTH_KEY', 'put your unique phrase here' );
  23. define( 'SECURE_AUTH_KEY', 'put your unique phrase here' );
  24. define( 'LOGGED_IN_KEY', 'put your unique phrase here' );
  25. define( 'NONCE_KEY', 'put your unique phrase here' );
  26. define( 'AUTH_SALT', 'put your unique phrase here' );
  27. define( 'SECURE_AUTH_SALT', 'put your unique phrase here' );
  28. define( 'LOGGED_IN_SALT', 'put your unique phrase here' );
  29. define( 'NONCE_SALT', 'put your unique phrase here' );
  30. /* WordPress Localized Language. */
  31. define( 'WPLANG', '' );
  32. /* Absolute path to the WordPress directory. */
  33. if ( !defined('ABSPATH') )
  34. define('ABSPATH', dirname(__FILE__) . '/');
  35. /* Sets up WordPress vars and included files. */
  36. require_once(ABSPATH . 'wp-settings.php');

comments powered by Disqus