Advertisement
Guest User

Untitled

a guest
Mar 11th, 2020
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * The base configuration for WordPress
  5. *
  6.  
  7. * The wp-config.php creation script uses this file during the
  8.  
  9. * installation. You don't have to use the web site, you can
  10. * copy this file to "wp-config.php" and fill in the values.
  11.  
  12. *
  13.  
  14. * This file contains the following configurations:
  15.  
  16. *
  17. * * MySQL settings
  18.  
  19. * * Secret keys
  20.  
  21. * * Database table prefix
  22.  
  23. * * ABSPATH
  24.  
  25. *
  26.  
  27. * @link https://codex.wordpress.org/Editing_wp-config.php
  28. *
  29.  
  30. * @package WordPress
  31. */
  32. // ** MySQL settings - You can get this info from your web host ** //
  33. /** The name of the database for WordPress */
  34. define( 'DB_NAME', 'wordpress' );
  35. /** MySQL database username */
  36. define( 'DB_USER', 'root' );
  37. /** MySQL database password */
  38. define( 'DB_PASSWORD', '(redacted)' );
  39. /** MySQL hostname */
  40. define( 'DB_HOST', 'localhost' );
  41. /** Database Charset to use in creating database tables. */
  42. define( 'DB_CHARSET', 'utf8' );
  43. /** The Database Collate type. Don't change this if in doubt. */
  44. define( 'DB_COLLATE', '' );
  45. /**#@+
  46. * Authentication Unique Keys and Salts.
  47. *
  48. * Change these to different unique phrases!
  49. * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
  50. * 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.
  51. *
  52. * @since 2.6.0
  53. */
  54. define('AUTH_KEY', '(redacted)');
  55. define('SECURE_AUTH_KEY', '(redacted)');
  56. define('LOGGED_IN_KEY', '(redacted)');
  57. define('NONCE_KEY', '(redacted)');
  58. define('AUTH_SALT', '(redacted)');
  59. define('SECURE_AUTH_SALT', '(redacted)');
  60. define('LOGGED_IN_SALT', '(redacted)');
  61. define('NONCE_SALT', '(redacted)'
  62. /**#@-*/
  63. /**
  64. * WordPress Database Table prefix.
  65. *
  66. * You can have multiple installations in one database if you give each
  67. * a unique prefix. Only numbers, letters, and underscores please!
  68. */
  69. $table_prefix = 'wp_';
  70. /**
  71. * For developers: WordPress debugging mode.
  72. *
  73. * Change this to true to enable the display of notices during development.
  74. * It is strongly recommended that plugin and theme developers use WP_DEBUG
  75. * in their development environments.
  76. *
  77. * For information on other constants that can be used for debugging,
  78. * visit the Codex.
  79. *
  80. * @link https://codex.wordpress.org/Debugging_in_WordPress
  81. */
  82. define( 'WP_DEBUG', false );
  83. /* That's all, stop editing! Happy publishing. */
  84. /** Absolute path to the WordPress directory. */
  85. if ( ! defined( 'ABSPATH' ) ) {
  86. define( 'ABSPATH', dirname( __FILE__ ) . '/' );
  87. }
  88. /** Sets up WordPress vars and included files. */
  89. require_once( ABSPATH . 'wp-settings.php' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement