Advertisement
rimi1

Untitled

Mar 4th, 2014
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.17 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
  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.  
  17. /**#@+
  18. * Authentication Unique Keys and Salts.
  19. *
  20. * Change these to different unique phrases!
  21. * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
  22. * 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.
  23. *
  24. * @since 2.6.0
  25. */
  26. define('AUTH_KEY', 'cue5mergbj6vtcyxucvfbmoaisz79yqkrf5o2yoz89xd0tjohjsub4n2c54dyemb');
  27. define('SECURE_AUTH_KEY', 'rvchl7266xvloe5z1z4hckd9izffsjjikeetlca5phr4nlmeqgbtrnjox2dtk2mp');
  28. define('LOGGED_IN_KEY', 'x8xlym9ax3cfiirq0mbtg357h5ehsiwxihp47yc65rci4dtau7yur9yasbovbupt');
  29. define('NONCE_KEY', 'p5rcr0ivafhzoj5cv6v82wgp9rp7uzbioprzq3kfij3xbfd2gn2ekm4h3asfrzjk');
  30. define('AUTH_SALT', 'h9gx0cppsb8se1o6zgggeo1ldfljttx2vbg7qdmuahk4lkaqz8l69unljnpvukjs');
  31. define('SECURE_AUTH_SALT', 'ifkachvjtytev66vydnqjmozhzblxebsgbtfrhslgjqoidue39plt64hecniioae');
  32. define('LOGGED_IN_SALT', 'mpafzgqyushyrattd9yektwt96ghnhq2z1r2apuhp2lsakyprrff7il2xovwhoez');
  33. define('NONCE_SALT', 'jdxxdgbgx1zzn0yq1tropwlzvytykmkpbr306mljx60sbl4lpk2fusotejimenai');
  34.  
  35. /**#@-*/
  36.  
  37. /**
  38. * WordPress Database Table prefix.
  39. *
  40. * You can have multiple installations in one database if you give each a unique
  41. * prefix. Only numbers, letters, and underscores please!
  42. */
  43. $table_prefix = 'p6x_';
  44.  
  45. /**
  46. * WordPress Localized Language, defaults to English.
  47. *
  48. * Change this to localize WordPress. A corresponding MO file for the chosen
  49. * language must be installed to wp-content/languages. For example, install
  50. * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
  51. * language support.
  52. */
  53. define('WPLANG', '');
  54.  
  55. /**
  56. * For developers: WordPress debugging mode.
  57. *
  58. * Change this to true to enable the display of notices during development.
  59. * It is strongly recommended that plugin and theme developers use WP_DEBUG
  60. * in their development environments.
  61. */
  62. define('WP_DEBUG', false);
  63. define('WP_ALLOW_MULTISITE', true);
  64. define('MULTISITE', true);
  65. define('SUBDOMAIN_INSTALL', true);
  66. define('DOMAIN_CURRENT_SITE', 'webstudio503.com');
  67. define('PATH_CURRENT_SITE', '/');
  68. define('SITE_ID_CURRENT_SITE', 1);
  69. define('BLOG_ID_CURRENT_SITE', 1);
  70.  
  71. define( 'SUNRISE', 'on' );
  72.  
  73. /* That's all, stop editing! Happy blogging. */
  74.  
  75. /** Absolute path to the WordPress directory. */
  76. if ( !defined('ABSPATH') )
  77. define('ABSPATH', dirname(__FILE__) . '/');
  78.  
  79. /** Sets up WordPress vars and included files. */
  80. require_once(ABSPATH . 'wp-settings.php');
  81. define( 'WP_AUTO_UPDATE_CORE', false );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement