· 7 years ago · Nov 22, 2018, 10:00 PM
1<?php
2/**
3 * The base configuration for WordPress
4 *
5 * The wp-config.php creation script uses this file during the
6 * installation. You don't have to use the web site, you can
7 * copy this file to "wp-config.php" and fill in the values.
8 *
9 * This file contains the following configurations:
10 *
11 * * MySQL settings
12 * * Secret keys
13 * * Database table prefix
14 * * ABSPATH
15 *
16 * @link https://codex.wordpress.org/Editing_wp-config.php
17 *
18 * @package WordPress
19 */
20
21define('FORCE_SSL_LOGIN', true);
22define('FORCE_SSL_ADMIN', true);
23// ** MySQL settings - You can get this info from your web host ** //
24/** The name of the database for WordPress */
25define('DB_NAME', 'jacksontaxi');
26
27/** MySQL database username */
28define('DB_USER', 'jacksontaxi');
29
30/** MySQL database password */
31define('DB_PASSWORD', 'Jackson2016!');
32
33/** MySQL hostname */
34define('DB_HOST', 'jacksontaxi.db.8929509.hostedresource.com');
35
36/** Database Charset to use in creating database tables. */
37define('DB_CHARSET', 'utf8');
38
39/** The Database Collate type. Don't change this if in doubt. */
40define('DB_COLLATE', '');
41
42/**#@+
43 * Authentication Unique Keys and Salts.
44 *
45 * Change these to different unique phrases!
46 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
47 * 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.
48 *
49 * @since 2.6.0
50 */
51define('AUTH_KEY', '2VXX4VjhRLCdSlGwSBKWXIyMdSepWlsZN4oN63beLzzhBPRiUnvYAIGC2uMjlUwZ');
52define('SECURE_AUTH_KEY', 'pgCAN6xIAKrvqsOoXoTRMeNrwBdYGlilacS6LzcFFRil1zb78osRYO69GHnxPiUR');
53define('LOGGED_IN_KEY', '0Ho23UvO21ocUyF3RXxq326PuxPn0njtubrf6g0rux41gRfnps7vPus37kWtE9V7');
54define('NONCE_KEY', 'kuAVjZnd9koz40P9aKUyKo8UIx4qL6eZzSJuzZsDmQkJMwRhe0JYz49XdAkgoAU8');
55define('AUTH_SALT', '9UjDGFu4iEezxrMZQKTTIco5ELaTKlucSy0KozgA7whVut1FBXQ9S8F4DJzI5vxL');
56define('SECURE_AUTH_SALT', '246bNMdFbdgsYp8SQLpIvUDSBa9qNzawwALiKjJr3j4iilFloZXU0D85GPMeK5ab');
57define('LOGGED_IN_SALT', 'YsT5sMd8f6Zl73g7A8xr0mTRPzUWQLhuuFd3iiuZd3hyiBKbRiblaLmMAlX9oohV');
58define('NONCE_SALT', 'q9apmjnQkD33qTOUBPL03BdN9rT5GPLitmYPUrBiEipaTEQoAKqGQ6BkzA6doAAe');
59
60/**
61 * Other customizations.
62 */
63define('FS_METHOD','direct');define('FS_CHMOD_DIR',0755);define('FS_CHMOD_FILE',0644);
64define('WP_TEMP_DIR',dirname(__FILE__).'/wp-content/uploads');
65
66/**
67 * Turn off automatic updates since these are managed upstream.
68 */
69define('AUTOMATIC_UPDATER_DISABLED', true);
70
71
72/**#@-*/
73
74/**
75 * WordPress Database Table prefix.
76 *
77 * You can have multiple installations in one database if you give each
78 * a unique prefix. Only numbers, letters, and underscores please!
79 */
80$table_prefix = 'wp_';
81
82/**
83 * For developers: WordPress debugging mode.
84 *
85 * Change this to true to enable the display of notices during development.
86 * It is strongly recommended that plugin and theme developers use WP_DEBUG
87 * in their development environments.
88 *
89 * For information on other constants that can be used for debugging,
90 * visit the Codex.
91 *
92 * @link https://codex.wordpress.org/Debugging_in_WordPress
93 */
94define('WP_DEBUG', false);
95
96/* That's all, stop editing! Happy blogging. */
97
98/** Absolute path to the WordPress directory. */
99if ( !defined('ABSPATH') )
100 define('ABSPATH', dirname(__FILE__) . '/');
101
102/** Sets up WordPress vars and included files. */
103require_once(ABSPATH . 'wp-settings.php');