Advertisement
Islam-Hacker

Untitled

Apr 30th, 2013
648
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.43 KB | None | 0 0
  1. twitter by @JM511
  2. =======================
  3.  
  4. <?php
  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', 'happyche_db');
  23.  
  24. /** MySQL database username */
  25. define('DB_USER', 'happyche_user');
  26.  
  27. /** MySQL database password */
  28. define('DB_PASSWORD', 'wordpress123!');
  29.  
  30. /** MySQL hostname */
  31. define('DB_HOST', 'localhost');
  32.  
  33. /** Database Charset to use in creating database tables. */
  34. define('DB_CHARSET', 'utf8');
  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', 'jJ5PA4KH$2SM7y4AB~;9h_|rt`pA?i|2(E^LI#qMizUf6Wa$Oqs]neDz=|)oxe|D');
  49. define('SECURE_AUTH_KEY', 'w}n_#-9u<P0J~NOgV7326xsc]_OlL_yTHM^V+!=*s(:-,[|mW^rbM%|v^7s^!`OU');
  50. define('LOGGED_IN_KEY', 'Ov@,!Y_jAP0ymqZi.s U:N0@HWKPPu6W+BbB4pucX*+&*k.sfhbyyKgG6rQdl!~|');
  51. define('NONCE_KEY', '<|5{ym6V#%2^cQ`aUhZT61Gdpu:RfK[nh|o9y4{.%w+JoB6vecu0E3Xk`h IaNUD');
  52. define('AUTH_SALT', 'AIIiYYAIpS4e_L9^)&=|d2kY.xP`Gx;0&F&h|pb]GvMs+oQ4MykJA/WmU8[;MQf~');
  53. define('SECURE_AUTH_SALT', '#wd7<6)^BO|wo46r&V<J) lnVLRuFjs-=&qOT*2^<N`TWC@oEa+wo]zlj -|]q/|');
  54. define('LOGGED_IN_SALT', ' Ca.G3Y_=c-o~<!U7/LZbzFr+jG|O=jp;mB1SyXVkD>tq~+1)O(!kM)/ZhgL^Q>G');
  55. define('NONCE_SALT', 'P+6-5wCU,|74>zgnGTZzKRAdG{Xyv1Em-C%:1+bSj.JS_,t~l){B^kqc-g^+J$<[');
  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.  
  86. /* That's all, stop editing! Happy blogging. */
  87.  
  88. /** Absolute path to the WordPress directory. */
  89. if ( !defined('ABSPATH') )
  90. define('ABSPATH', dirname(__FILE__) . '/');
  91.  
  92. /** Sets up WordPress vars and included files. */
  93. require_once(ABSPATH . 'wp-settings.php');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement