Advertisement
Guest User

Untitled

a guest
Aug 20th, 2015
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 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, WordPress Language, and ABSPATH. You can find more information by
  7. * visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
  8. * wp-config.php} 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. /** The name of the database for WordPress */
  19. define('DB_NAME', 'XXXX');
  20.  
  21. /** MySQL database username */
  22. define('DB_USER', 'XXXX');
  23.  
  24. /** MySQL database password */
  25. define('DB_PASSWORD', 'XXXX');
  26.  
  27. /** MySQL hostname */
  28. define('DB_HOST', 'XXXX');
  29.  
  30. /** Database Charset to use in creating database tables. */
  31. define('DB_CHARSET', 'utf8');
  32.  
  33. /** The Database Collate type. Don't change this if in doubt. */
  34. define('DB_COLLATE', '');
  35.  
  36. /**#@+
  37. * Authentication Unique Keys.
  38. *
  39. * Change these to different unique phrases!
  40. * You can generate these using the {@link http://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service}
  41. *
  42. * @since 2.6.0
  43. */
  44. define('AUTH_KEY', 'yN@P1pSwf8aauAnnzadCEnkACJv(lCPQctG2(tE%4OuE4fI2rnI%mWJnBmR2*%qw');
  45. define('SECURE_AUTH_KEY', 'ulAgnXE)Yd!9^c!%6IWN0Xe7dN0gHbrUjHzWLF4LM0P)$@S@sC%fhayj%BK7$%Ut');
  46. define('LOGGED_IN_KEY', 'sYrWcY&h*l&$hp^s9Eh@&YWZF)Jsr(3k*LqL)&O^iKE0f8YSMLzS9yaDQq2&OytS');
  47. define('NONCE_KEY', 'WMUkDEkYjYOqU*6cd85nacC5hTxm6mr4xmWVILVtX*lcvQ2mnb4vrCgKFFNq2*mp');
  48. define('AUTH_SALT', '5&4&pYUg3p$tP%usklLm6Q3XojaumgHNjaOoA8WSf(nY5$wpq8h!OlHf5Z8j3cjP');
  49. define('SECURE_AUTH_SALT', 'OYocUXs5Z2PEkSOsqJHaAO5#kFNVV8Ldrs0OZJ3!8G599vuUBzkER(EQTcR9DzXp');
  50. define('LOGGED_IN_SALT', 'rwbs(RFoXQSzwkBGQ0i#U2I9z^)qdM6VwCfX*l4Ib*XDdQJzFBouDhZkCc@xi@sU');
  51. define('NONCE_SALT', 'qrDJBsIi&C*UW*7ku^OlT(&Cz7BgdvvDA8eBe$oGZQwTg537GnzP33o@6s%ULDm6');
  52. /**#@-*/
  53.  
  54. /**
  55. * WordPress Database Table prefix.
  56. *
  57. * You can have multiple installations in one database if you give each a unique
  58. * prefix. Only numbers, letters, and underscores please!
  59. */
  60. $table_prefix = 'wp_';
  61.  
  62. /**
  63. * WordPress Localized Language, defaults to English.
  64. *
  65. * Change this to localize WordPress. A corresponding MO file for the chosen
  66. * language must be installed to wp-content/languages. For example, install
  67. * de.mo to wp-content/languages and set WPLANG to 'de' to enable German
  68. * language support.
  69. */
  70. define ('WPLANG', 'de_DE');
  71.  
  72. define ('FS_METHOD', 'direct');
  73.  
  74. define('WP_DEBUG', false);
  75.  
  76. /* That's all, stop editing! Happy blogging. */
  77.  
  78. /** WordPress absolute path to the Wordpress directory. */
  79. if ( !defined('ABSPATH') )
  80. define('ABSPATH', dirname(__FILE__) . '/');
  81.  
  82. /** Sets up WordPress vars and included files. */
  83. require_once(ABSPATH . 'wp-settings.php');
  84.  
  85. //--- disable auto upgrade
  86. define( 'AUTOMATIC_UPDATER_DISABLED', true );
  87.  
  88.  
  89.  
  90. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement