Advertisement
Guest User

Wp-config.php for Petgroomingtemplate.com

a guest
Jun 10th, 2014
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.95 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. // ** MySQL settings - You can get this info from your web host ** //
  18. /** The name of the database for WordPress */
  19. define('DB_NAME', '*');
  20.  
  21. /** MySQL database username */
  22. define('DB_USER', '*');
  23.  
  24. /** MySQL database password */
  25. define('DB_PASSWORD', '*');
  26.  
  27. /** MySQL hostname */
  28. define('DB_HOST', 'localhost');
  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 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',         '9+Py]&;$4 pyQoG|`Nftgj#Pd(Yc+Po$liFj`vHonbpl R@tW#cind<H0ee+Be.l');
  46. define('SECURE_AUTH_KEY',  'Rpt2AyaAq+Xc;u4w6B_Igep]qZHNU}P$b.GWvh%LbvkMq(Vyt*x4+R-(1,Ahul4G');
  47. define('LOGGED_IN_KEY',    '0l5rZ,UN^R*a4)?,kg8`}o$:x8v:@< xaHJEL+Do3[9)g9]mC}(@4-Gf-^8?6*k3');
  48. define('NONCE_KEY',        '[I9|f;NCfZw$DE ii-TCGLPpD}lzh3$Jl:?4n>6e03qJnJi/hZ3$$X+sU Hdv)q+');
  49. define('AUTH_SALT',        'Y3t;TGs=F,/F{giqH+V+G&01s7/a#Z<aJT%Q3/d&/!5te9./^Us8_p}?[17 jjZc');
  50. define('SECURE_AUTH_SALT', 'Ho|3x6[9B/b-j7a=%/c>.4+}[rMYUg-rPk_,|8 gnjukuUze$?*kBV#_~nyWjUE<');
  51. define('LOGGED_IN_SALT',   'u[T$-J}Aa:;bi!fz}IU_HN4@]&53LF}tX4k@X,Nc(&=+]$6ArO{|-zFB36~J|JDN');
  52. define('NONCE_SALT',       'e^)|rgABYXhzH V[ZlWkP^3.%vVu:3?_ys[){N+C!WSzz~-qs!)PAuW%5ZV&+df+');
  53. /**#@-*/
  54.  
  55. /**
  56.  * WordPress Database Table prefix.
  57.  *
  58.  * You can have multiple installations in one database if you give each a unique
  59.  * prefix. Only numbers, letters, and underscores please!
  60.  */
  61. $table_prefix  = '*_';
  62.  
  63. /**
  64.  * WordPress Localized Language, defaults to English.
  65.  *
  66.  * Change this to localize WordPress. A corresponding MO file for the chosen
  67.  * language must be installed to wp-content/languages. For example, install
  68.  * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
  69.  * language support.
  70.  */
  71. define('WPLANG', '');
  72.  
  73. /**
  74.  * For developers: WordPress debugging mode.
  75.  *
  76.  * Change this to true to enable the display of notices during development.
  77.  * It is strongly recommended that plugin and theme developers use WP_DEBUG
  78.  * in their development environments.
  79.  */
  80.  
  81.  // Turns WordPress debugging on
  82. define('WP_DEBUG', true);
  83. // Tells WordPress to log everything to the /wp-content/debug.log file
  84. define('WP_DEBUG_LOG', true);
  85. // Doesn't force the PHP 'display_errors' variable to be on
  86. define('WP_DEBUG_DISPLAY', false);
  87. // Hides errors from being displayed on-screen
  88. @ini_set('display_errors', 0);
  89.  
  90. define('MULTISITE', true);
  91. // You may need to change the following to true to allow sub domains
  92. define('SUBDOMAIN_INSTALL', false);
  93. define('DOMAIN_CURRENT_SITE', 'huddersfieldhosting.co.uk');
  94. define('PATH_CURRENT_SITE', '/');
  95. define('SITE_ID_CURRENT_SITE', 1);
  96. define('BLOG_ID_CURRENT_SITE', 1);
  97.  
  98. /* That's all, stop editing! Happy blogging. */
  99.  
  100. /** Absolute path to the WordPress directory. */
  101. if ( !defined('ABSPATH') )
  102.     define('ABSPATH', dirname(__FILE__) . '/');
  103.  
  104. /** Sets up WordPress vars and included files. */
  105. require_once(ABSPATH . 'wp-settings.php');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement