Advertisement
Guest User

wp-config.php

a guest
Sep 14th, 2014
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.35 KB | None | 0 0
  1. username@server:/var/www# cat wp-config.php
  2. <?php
  3. //The entries below were created by iThemes Security to enforce SSL
  4. define( 'FORCE_SSL_LOGIN', true );
  5. define( 'FORCE_SSL_ADMIN', true );
  6. //The entry below were created by iThemes Security to disable the file editor
  7. define( 'DISALLOW_FILE_EDIT', true );
  8.  
  9.  
  10. /**
  11. * The base configurations of the WordPress.
  12. *
  13. * This file has the following configurations: MySQL settings, Table Prefix,
  14. * Secret Keys, WordPress Language, and ABSPATH. You can find more information
  15. * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
  16. * wp-config.php} Codex page. You can get the MySQL settings from your web host.
  17. *
  18. * This file is used by the wp-config.php creation script during the
  19. * installation. You don't have to use the web site, you can just copy this file
  20. * to "wp-config.php" and fill in the values.
  21. *
  22. * @package WordPress
  23. */
  24.  
  25. // ** MySQL settings - You can get this info from your web host ** //
  26. /** The name of the database for WordPress */
  27. define('DB_NAME', 'wordpress');
  28.  
  29. /** MySQL database username */
  30. define('DB_USER', 'wordpressuser');
  31.  
  32. /** MySQL database password */
  33. define('DB_PASSWORD', 'mypassword');
  34.  
  35. /** MySQL hostname */
  36. define('DB_HOST', 'localhost');
  37.  
  38. /** Database Charset to use in creating database tables. */
  39. define('DB_CHARSET', 'utf8');
  40.  
  41. /** The Database Collate type. Don't change this if in doubt. */
  42. define('DB_COLLATE', '');
  43.  
  44. /**#@+
  45. * Authentication Unique Keys and Salts.
  46. *
  47. * Change these to different unique phrases!
  48. * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
  49. * 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.
  50. *
  51. * @since 2.6.0
  52. */
  53. define('AUTH_KEY', 'put your unique phrase here');
  54. define('SECURE_AUTH_KEY', 'put your unique phrase here');
  55. define('LOGGED_IN_KEY', 'put your unique phrase here');
  56. define('NONCE_KEY', 'put your unique phrase here');
  57. define('AUTH_SALT', 'put your unique phrase here');
  58. define('SECURE_AUTH_SALT', 'put your unique phrase here');
  59. define('LOGGED_IN_SALT', 'put your unique phrase here');
  60. define('NONCE_SALT', 'put your unique phrase here');
  61.  
  62. /**#@-*/
  63.  
  64. /**
  65. * WordPress Database Table prefix.
  66. *
  67. * You can have multiple installations in one database if you give each a unique
  68. * prefix. Only numbers, letters, and underscores please!
  69. */
  70. $table_prefix = 'gc7ckct_';
  71.  
  72. /**
  73. * WordPress Localized Language, defaults to English.
  74. *
  75. * Change this to localize WordPress. A corresponding MO file for the chosen
  76. * language must be installed to wp-content/languages. For example, install
  77. * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
  78. * language support.
  79. */
  80. define('WPLANG', '');
  81.  
  82. /**
  83. * For developers: WordPress debugging mode.
  84. *
  85. * Change this to true to enable the display of notices during development.
  86. * It is strongly recommended that plugin and theme developers use WP_DEBUG
  87. * in their development environments.
  88. */
  89. define('WP_DEBUG', false);
  90. /* That's all, stop editing! Happy blogging. */
  91.  
  92. /** Absolute path to the WordPress directory. */
  93. if ( !defined('ABSPATH') )
  94. define('ABSPATH', dirname(__FILE__) . '/');
  95.  
  96. /** Sets up WordPress vars and included files. */
  97. require_once(ABSPATH . 'wp-settings.php');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement