/blog/wp-config.php

https://github.com/kuzin/website-2008 · PHP · 80 lines · 21 code · 10 blank · 49 comment · 1 complexity · 3e007b7ac50cccbcef526e61b910415e MD5 · raw file

  1. <?php
  2. /**
  3. * The base configurations of the WordPress.
  4. *
  5. * This file has the following configurations: MySQL settings, Table Prefix,
  6. * Secret Keys, WordPress Language, and ABSPATH. You can find more information
  7. * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
  8. * wp-config.php} Codex page. You can get the MySQL settings from your web host.
  9. *
  10. * This file is used by the wp-config.php creation script during the
  11. * installation. You don't have to use the web site, you can just copy this file
  12. * to "wp-config.php" and fill in the values.
  13. *
  14. * @package WordPress
  15. */
  16. // ** MySQL settings - You can get this info from your web host ** //
  17. define('DB_NAME', 'wordpress');
  18. define('DB_USER', 'root');
  19. define('DB_PASSWORD', 'root');
  20. define('DB_HOST', 'localhost');
  21. define('DB_CHARSET', 'utf8');
  22. define('DB_COLLATE', '');
  23. /**#@+
  24. * Authentication Unique Keys and Salts.
  25. *
  26. * Change these to different unique phrases!
  27. * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
  28. * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
  29. *
  30. * @since 2.6.0
  31. */
  32. define('AUTH_KEY', 'put your unique phrase here');
  33. define('SECURE_AUTH_KEY', 'put your unique phrase here');
  34. define('LOGGED_IN_KEY', 'put your unique phrase here');
  35. define('NONCE_KEY', 'put your unique phrase here');
  36. define('AUTH_SALT', 'put your unique phrase here');
  37. define('SECURE_AUTH_SALT', 'put your unique phrase here');
  38. define('LOGGED_IN_SALT', 'put your unique phrase here');
  39. define('NONCE_SALT', 'put your unique phrase here');
  40. /**#@-*/
  41. /**
  42. * WordPress Database Table prefix.
  43. *
  44. * You can have multiple installations in one database if you give each a unique
  45. * prefix. Only numbers, letters, and underscores please!
  46. */
  47. $table_prefix = 'wp_';
  48. /**
  49. * WordPress Localized Language, defaults to English.
  50. *
  51. * Change this to localize WordPress. A corresponding MO file for the chosen
  52. * language must be installed to wp-content/languages. For example, install
  53. * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
  54. * language support.
  55. */
  56. define('WPLANG', '');
  57. /**
  58. * For developers: WordPress debugging mode.
  59. *
  60. * Change this to true to enable the display of notices during development.
  61. * It is strongly recommended that plugin and theme developers use WP_DEBUG
  62. * in their development environments.
  63. */
  64. define('WP_DEBUG', false);
  65. /* That's all, stop editing! Happy blogging. */
  66. /** Absolute path to the WordPress directory. */
  67. if ( !defined('ABSPATH') )
  68. define('ABSPATH', dirname(__FILE__) . '/');
  69. /** Sets up WordPress vars and included files. */
  70. require_once(ABSPATH . 'wp-settings.php');