Guest User

Untitled

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