Advertisement
Guest User

Untitled

a guest
Sep 27th, 2015
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.02 KB | None | 0 0
  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, and ABSPATH. You can find more information by visiting
  7.  * {@link https://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php}
  8.  * 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.  
  17. // ** MySQL settings - You can get this info from your web host ** //
  18.  
  19. /** The name of the database for WordPress */
  20. define('DB_NAME', 'database');
  21.  
  22. /** MySQL database username */
  23. define('DB_USER', 'username');
  24.  
  25. /** MySQL database password */
  26. define('DB_PASSWORD', 'password');
  27.  
  28. /** MySQL hostname */
  29. define('DB_HOST', 'localhost');
  30.  
  31. //define('WP_CACHE', false); //Added by WP-Cache Manager
  32. //define( 'WPCACHEHOME', '/var/www/wp-content/plugins/wp-super-cache/' ); //Added by WP-Cache Manager
  33.  
  34. /** Database Charset to use in creating database tables. */
  35. define('DB_CHARSET', 'utf8');
  36.  
  37. /** The Database Collate type. Don't change this if in doubt. */
  38. define('DB_COLLATE', '');
  39.  
  40. /**#@+
  41.  * Authentication Unique Keys and Salts.
  42.  *
  43.  * Change these to different unique phrases!
  44.  * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
  45.  * 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.
  46.  *
  47.  * @since 2.6.0
  48.  */
  49.  
  50. define('FS_METHOD', 'direct');
  51. define('AUTH_KEY',         'stuff');
  52. define('SECURE_AUTH_KEY',  'stuff');
  53. define('LOGGED_IN_KEY',    'stuff');
  54. define('NONCE_KEY',        'stuff');
  55. define('AUTH_SALT',        'stuff');
  56. define('SECURE_AUTH_SALT', 'stuff');
  57. define('LOGGED_IN_SALT',   'stuff');
  58. define('NONCE_SALT',       'stuff');
  59.  
  60. /**#@-*/
  61.  
  62. /**
  63.  * WordPress Database Table prefix.
  64.  *
  65.  * You can have multiple installations in one database if you give each a unique
  66.  * prefix. Only numbers, letters, and underscores please!
  67.  */
  68. $table_prefix  = 'wp_';
  69.  
  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. define('WP_DEBUG', false);
  78.  
  79.  
  80. /* Multisite */
  81. define('WP_ALLOW_MULTISITE', true);
  82. define('MULTISITE', true);
  83. define('SUBDOMAIN_INSTALL', false);
  84. define('DOMAIN_CURRENT_SITE', 'algosaur.us');
  85. define('PATH_CURRENT_SITE', '/');
  86. define('SITE_ID_CURRENT_SITE', 1);
  87. define('BLOG_ID_CURRENT_SITE', 1);
  88. /* That's all, stop editing! Happy blogging. */
  89.  
  90. /** Absolute path to the WordPress directory. */
  91. if ( !defined('ABSPATH') )
  92.         define('ABSPATH', dirname(__FILE__) . '/');
  93.  
  94. /** Sets up WordPress vars and included files. */
  95. require_once(ABSPATH . 'wp-settings.php');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement