· 9 years ago · Aug 23, 2016, 09:58 AM
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 */
19define( 'DB_NAME', 'haulaexchange' );
20define( 'DB_USER', 'haulaexchange' );
21define( 'DB_PASSWORD', 'lAWS67veGIe' );
22
23/** MySQL hostname */
24define('DB_HOST', 'localhost');
25
26/** Database Charset to use in creating database tables. */
27define('DB_CHARSET', 'utf8');
28
29/** The Database Collate type. Don't change this if in doubt. */
30define('DB_COLLATE', '');
31
32/**#@+
33 * Authentication Unique Keys and Salts.
34 *
35 * Change these to different unique phrases!
36 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
37 * 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.
38 *
39 * @since 2.6.0
40 */
41define('AUTH_KEY', 'vHWoJr:lHLuMO[r0>[c+zO-_(kp~vkVO5v7B,+[SFr?DJxbpG|Vosfyxb<~n/=;a');
42define('SECURE_AUTH_KEY', 'O5kY`eKYc=HzOljCIlC^mT~Y,kYLkjZLJjiT Z,1X.nNq7<7+1kv[hAW|-{tM9#G');
43define('LOGGED_IN_KEY', '-e4>BJCorYMtV{b%i]emM^]]r;YDzCk7r93{ k<yM,HoJLSU.c.:2`e&Xo*_X@dL');
44define('NONCE_KEY', 'wv&~$s:-5W2EUgVuEY=DXsSWJ=l=t|*@w?Cy)-O,+l#>/2|)-Ix|@iT$-M9+_;dT');
45define('AUTH_SALT', '9A>8OJ+M_$t<46]Z`P/i2b)X5Gvq>VM aL;h<:@X|&{_q0ldVld?CObgK5B@fr,x');
46define('SECURE_AUTH_SALT', 'LA6J,p:$zHoOz}<MkANX%J~!p{i9J:|s}4b|~9U|(vEElWhZF;D?Q~r$uqHf}9$i');
47define('LOGGED_IN_SALT', '.F3mdg^-xkz-u-+na(+)vEx`A=M+B,Q?u0g kTpM&v-OgZ60|Osj|qy%IInXoO+N');
48define('NONCE_SALT', '||=8h|#R`2#X- 9I]LX+W9YxS*B8)G.z9r,kO&Ao8Q,yr{;JN8Ld_oo:Z4`hoN?c');
49
50/**#@-*/
51
52/**
53 * WordPress Database Table prefix.
54 *
55 * You can have multiple installations in one database if you give each a unique
56 * prefix. Only numbers, letters, and underscores please!
57 */
58$table_prefix = 'hx_';
59
60/**
61 * WordPress Localized Language, defaults to English.
62 *
63 * Change this to localize WordPress. A corresponding MO file for the chosen
64 * language must be installed to wp-content/languages. For example, install
65 * de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
66 * language support.
67 */
68define('WPLANG', '');
69
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 */
77define('WP_DEBUG', false);
78
79/* That's all, stop editing! Happy blogging. */
80
81/** Absolute path to the WordPress directory. */
82if ( !defined('ABSPATH') )
83 define('ABSPATH', dirname(__FILE__) . '/');
84
85/** Sets up WordPress vars and included files. */
86require_once(ABSPATH . 'wp-settings.php');