PageRenderTime 58ms CodeModel.GetById 32ms RepoModel.GetById 0ms app.codeStats 0ms

/blogs/wp-config.php

https://github.com/toxik/iHazNews
PHP | 98 lines | 28 code | 15 blank | 55 comment | 1 complexity | 4ef3102c70a6a6992b448ff08e778244 MD5 | raw file
  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. define('DB_NAME', 'SOME_DB');
  19. /** MySQL database username */
  20. define('DB_USER', 'SOME_USER');
  21. /** MySQL database password */
  22. define('DB_PASSWORD', 'SOME_PASS');
  23. /** MySQL hostname */
  24. define('DB_HOST', 'localhost');
  25. /** Database Charset to use in creating database tables. */
  26. define('DB_CHARSET', 'utf8');
  27. /** The Database Collate type. Don't change this if in doubt. */
  28. define('DB_COLLATE', '');
  29. define( 'MULTISITE', true );
  30. define( 'SUBDOMAIN_INSTALL', true );
  31. $base = '/';
  32. define( 'DOMAIN_CURRENT_SITE', 'blogs.ihaznews.com' );
  33. define( 'PATH_CURRENT_SITE', '/' );
  34. define( 'SITE_ID_CURRENT_SITE', 1 );
  35. define( 'BLOG_ID_CURRENT_SITE', 1 );
  36. /**#@+
  37. * Authentication Unique Keys and Salts.
  38. *
  39. * Change these to different unique phrases!
  40. * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
  41. * 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.
  42. *
  43. * @since 2.6.0
  44. */
  45. define('AUTH_KEY', 'DB+3zTI@= :Ob@]ar8=jwXW4fR[Q%MUmZ)l]5$d>;K?_#}=O28Z+;dks,#GWt,Om');
  46. define('SECURE_AUTH_KEY', 'm->$KBJQ!l:Oi+M!T}+m$.^}o8}iI>ukSZ.:db3K:PlRZM9_pf2AS{X7RuD/+>6h');
  47. define('LOGGED_IN_KEY', '&ei,9%7MEh(jOIJ^]4u,]Y<XeN-hTyPJ+ztS)$Tg*O.]JQ+(/W]T~3&kOyej$(OW');
  48. define('NONCE_KEY', 'rhB9(jK2c$TH7mSszp7onx2=IQg_(eyfO!&E0%<n}D)z?2kN|9 $tg+~{h]-#=TI');
  49. define('AUTH_SALT', 'G8,:%LPMQZ&y?stUmR2?j|i4fEET8LZzI/K4x|$96rMJ,$+%:G=PC>6`cW&<6|@5');
  50. define('SECURE_AUTH_SALT', '+SF+^jWcIkxC$L(O/l;E.1[O*8P_V1J{t-{6cCg8):zN+BTd`d``^J6lhz1ces@,');
  51. define('LOGGED_IN_SALT', 'nEn*XFQ#w9Lh-GHQyMJV?Kg(UFGG4xSQB.>0pJ#V4Eylfs:U*K|L>bm3}^U).)<6');
  52. define('NONCE_SALT', '/6(L[6!/GT-:UVD:44#S/wLm<,q~NuD([to%aNP|Wy;x{=kXmjWzh_PL63[P%[x$');
  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. * WordPress Localized Language, defaults to English.
  63. *
  64. * Change this to localize WordPress. A corresponding MO file for the chosen
  65. * language must be installed to wp-content/languages. For example, install
  66. * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
  67. * language support.
  68. */
  69. define('WPLANG', '');
  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. /* That's all, stop editing! Happy blogging. */
  79. /** Absolute path to the WordPress directory. */
  80. if ( !defined('ABSPATH') )
  81. define('ABSPATH', dirname(__FILE__) . '/');
  82. /** Sets up WordPress vars and included files. */
  83. require_once(ABSPATH . 'wp-settings.php');