Advertisement
Guest User

Untitled

a guest
Oct 18th, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. /**
  3. /* Setup a temporary folder for uploading and updating */
  4. define( 'WP_TEMP_DIR', ABSPATH . 'wp-content/tmp/') ;
  5. /*
  6.  * The base configurations of the WordPress.
  7.  *
  8.  * This file has the following configurations: MySQL settings, Table Prefix,
  9.  * Secret Keys, WordPress Language, and ABSPATH. You can find more information
  10.  * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
  11.  * wp-config.php} Codex page. You can get the MySQL settings from your web host.
  12.  *
  13.  * This file is used by the wp-config.php creation script during the
  14.  * installation. You don't have to use the web site, you can just copy this file
  15.  * to "wp-config.php" and fill in the values.
  16.  *
  17.  * @package WordPress
  18.  */
  19.  
  20. // ** MySQL settings - You can get this info from your web host ** //
  21. /** The name of the database for WordPress */
  22. define('DB_NAME', '');
  23.  
  24. /** MySQL database username */
  25. define('DB_USER', '');
  26.  
  27. /** MySQL database password */
  28. define('DB_PASSWORD', '');
  29.  
  30. /** MySQL hostname */
  31. define('DB_HOST', 'db.wallsnoceiling.com');
  32.  
  33. /** Database Charset to use in creating database tables. */
  34. define('DB_CHARSET', '');
  35.  
  36. /** The Database Collate type. Don't change this if in doubt. */
  37. define('DB_COLLATE', '');
  38.  
  39. /**#@+
  40.  * Authentication Unique Keys and Salts.
  41.  *
  42.  * Change these to different unique phrases!
  43.  * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
  44.  * 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.
  45.  *
  46.  * @since 2.6.0
  47.  */
  48. define('AUTH_KEY',         '|meA*UEoK+n8m=Vfnf;q |kF2J)5aEn~EpDKR,NeWG0CY0jF!+pF3Cu+y:E|!9 -');
  49. define('SECURE_AUTH_KEY',  'jn@M$D%<$|S6sO&/r3u$0ngN^*?@IN?u+|l-1Dd#3Mk`.>-|j&[-GAHLf8*;,M5$');
  50. define('LOGGED_IN_KEY',    ':9>2uz+dyw2@Zo$,/r*QOl=iw]-p[2<(>{D3p6=J9n_@ vGw(TE-Z-{CuGaywo)e');
  51. define('NONCE_KEY',        '@ZN;@Q+G/;/B:r|Q,{PIJddB|Xt_imv!=eG[Mt-[)F<$~G0L&?%}q#Yu8TM6sh]V');
  52. define('AUTH_SALT',        'put your unique phrase here');
  53. define('SECURE_AUTH_SALT', 'put your unique phrase here');
  54. define('LOGGED_IN_SALT',   'put your unique phrase here');
  55. define('NONCE_SALT',       'put your unique phrase here');
  56.  
  57. /**#@-*/
  58.  
  59. /**
  60.  * WordPress Database Table prefix.
  61.  *
  62.  * You can have multiple installations in one database if you give each a unique
  63.  * prefix. Only numbers, letters, and underscores please!
  64.  */
  65. $table_prefix  = 'wp_';
  66.  
  67. /**
  68.  * WordPress Localized Language, defaults to English.
  69.  *
  70.  * Change this to localize WordPress. A corresponding MO file for the chosen
  71.  * language must be installed to wp-content/languages. For example, install
  72.  * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
  73.  * language support.
  74.  */
  75. define('WPLANG', '');
  76.  
  77. /**
  78.  * For developers: WordPress debugging mode.
  79.  *
  80.  * Change this to true to enable the display of notices during development.
  81.  * It is strongly recommended that plugin and theme developers use WP_DEBUG
  82.  * in their development environments.
  83.  */
  84. define('WP_DEBUG', false);
  85. /* Multisite */
  86. define( 'WP_ALLOW_MULTISITE', true );
  87. /* That's all, stop editing! Happy blogging. */
  88.  
  89. /** Absolute path to the WordPress directory. */
  90. if ( !defined('ABSPATH') )
  91.     define('ABSPATH', dirname(__FILE__) . '/');
  92.  
  93. /** Sets up WordPress vars and included files. */
  94. require_once(ABSPATH . 'wp-settings.php');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement