PageRenderTime 50ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-config.php

https://bitbucket.org/mihteh/mihteh.com-wp
PHP | 114 lines | 31 code | 23 blank | 60 comment | 2 complexity | 8215c958b5691931c402e28416de5e89 MD5 | raw file
Possible License(s): AGPL-1.0, LGPL-2.1, GPL-2.0, GPL-3.0, Apache-2.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
  7. * by 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. // ** MySQL settings - You can get this info from your web host ** //
  17. /** The name of the database for WordPress */
  18. $local = strpos($_SERVER['HTTP_HOST'], ':8888')===false?false:true;
  19. if($local){
  20. define('DB_NAME', 'mihtehwp');
  21. /** MySQL database username */
  22. define('DB_USER', 'root');
  23. /** MySQL database password */
  24. define('DB_PASSWORD', 'root');
  25. /** MySQL hostname */
  26. define('DB_HOST', 'localhost');
  27. /** Database Charset to use in creating database tables. */
  28. define('DB_CHARSET', 'utf8');
  29. /** The Database Collate type. Don't change this if in doubt. */
  30. define('DB_COLLATE', '');
  31. }else{
  32. define('DB_NAME', 'mihtehwp');
  33. /** MySQL database username */
  34. define('DB_USER', 'root');
  35. /** MySQL database password */
  36. define('DB_PASSWORD', 'singing2011rock');
  37. /** MySQL hostname */
  38. define('DB_HOST', 'localhost');
  39. /** Database Charset to use in creating database tables. */
  40. define('DB_CHARSET', 'utf8');
  41. /** The Database Collate type. Don't change this if in doubt. */
  42. define('DB_COLLATE', '');
  43. }
  44. /**#@+
  45. * Authentication Unique Keys and Salts.
  46. *
  47. * Change these to different unique phrases!
  48. * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
  49. * 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.
  50. *
  51. * @since 2.6.0
  52. */
  53. define('AUTH_KEY', '|,8wK?x1(,G,dz ^i+!@:1WT/*v]UMl)mW-/`c7^}+=NeQ2Jd6j58!-?L#X.{Ev.');
  54. define('SECURE_AUTH_KEY', 'RmcU}#+/vN4[J||F-|F:6dW1U%4-pLYo*nDiJ~i}D4Kb|Q36qj-B6p-d6IR>ibZN');
  55. define('LOGGED_IN_KEY', ';GX~+%Se3Efy=0J;t,xh:)9+X?A?|SvCtN_v){.1&j5~o& ==WqHDqLD[|B)R+Fk');
  56. define('NONCE_KEY', ']1t)YL{/,66/m+-iR1?@.,,&~c5)n@I~+cNMI^4c_NZUe4oFfjpY9&vua#3odd3_');
  57. define('AUTH_SALT', 'a7<|~r|A+=}0D~tO/&)s rbCasH,0L{B8)h4SX5Nu::M<QLExehBmooIJ^wcxFBu');
  58. define('SECURE_AUTH_SALT', ' Bh;+KB)0Je1$/o&|2nxYjZ6v|lIgK5P3_p4;K}{$gBgDS/oK}(T)&o4yj-/o}_-');
  59. define('LOGGED_IN_SALT', '*sHz+@DrJ-tP)?dNcS82H>=qkrC$pSv|/ !p]YMh+Z83EnBsNfIGhn1XwjUYsXFe');
  60. define('NONCE_SALT', 'ppF<OZdo&5*&2q2CBjEGBTx>Xma(k/_;oRP8wBLZq f/4X!UQ6%#wg;&YG;&>h3>');
  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. * WordPress Localized Language, defaults to English.
  71. *
  72. * Change this to localize WordPress. A corresponding MO file for the chosen
  73. * language must be installed to wp-content/languages. For example, install
  74. * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
  75. * language support.
  76. */
  77. define('WPLANG', '');
  78. /**
  79. * For developers: WordPress debugging mode.
  80. *
  81. * Change this to true to enable the display of notices during development.
  82. * It is strongly recommended that plugin and theme developers use WP_DEBUG
  83. * in their development environments.
  84. */
  85. define('WP_DEBUG', false);
  86. /* That's all, stop editing! Happy blogging. */
  87. /** Absolute path to the WordPress directory. */
  88. if ( !defined('ABSPATH') )
  89. define('ABSPATH', dirname(__FILE__) . '/');
  90. /** Sets up WordPress vars and included files. */
  91. require_once(ABSPATH . 'wp-settings.php');