· 7 years ago · Mar 09, 2018, 09:06 PM
1<?php
2/** Enable W3 Total Cache */
3define('WP_CACHE', true); // Added by W3 Total Cache
4
5define('WP_HOME','https://standupyouths.com');
6define('WP_SITEURL','https://standupyouths.com');
7/**
8 * The base configuration for WordPress
9 *
10 * The wp-config.php creation script uses this file during the
11 * installation. You don't have to use the web site, you can
12 * copy this file to "wp-config.php" and fill in the values.
13 *
14 * This file contains the following configurations:
15 *
16 * * MySQL settings
17 * * Secret keys
18 * * Database table prefix
19 * * ABSPATH
20 *
21 * @link https://codex.wordpress.org/Editing_wp-config.php
22 *
23 * @package WordPress
24 */
25
26// ** MySQL settings - You can get this info from your web host ** //
27/** The name of the database for WordPress */
28define('DB_NAME', 'standupy_wp550');
29
30/** MySQL database username */
31define('DB_USER', 'standupy_wp550');
32
33/** MySQL database password */
34define('DB_PASSWORD', '39Sp2Q(hX[');
35
36/** MySQL hostname */
37define('DB_HOST', 'localhost');
38
39/** Database Charset to use in creating database tables. */
40define('DB_CHARSET', 'utf8mb4');
41
42/** The Database Collate type. Don't change this if in doubt. */
43define('DB_COLLATE', '');
44
45/**#@+
46 * Authentication Unique Keys and Salts.
47 *
48 * Change these to different unique phrases!
49 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
50 * 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.
51 *
52 * @since 2.6.0
53 */
54define('AUTH_KEY', 'eyzubpkzmlkfe0tzlnabo9ffsma8nv17iydciyvxch72qt71zqqn2c4ikucthic0');
55define('SECURE_AUTH_KEY', 'ned8wr0mur4tzdynfwdyzlmugtwwvkjkyelsqknya0ieuwymw6avvyiazpkfqrba');
56define('LOGGED_IN_KEY', 'mpogeumdw5xlrwknkpgfwlhi3zzy7clzayhnehthjzzbu40kej7b4fwqyhjhbgi8');
57define('NONCE_KEY', 'c7ome5kj8ikt1acrjrcpykdbcjb0idpe5nqza4on3cmuvmmyaow4lwo9zynouimn');
58define('AUTH_SALT', 'byzl3xyxmqtyztgotxfmjbd1et9ylfezrtulrzzs2hb3d7u9naki29jd74eerxgn');
59define('SECURE_AUTH_SALT', '6kfkiadasdb4rgaxe96kyevk4ofawlqvhgbpnmsf5rpmfjkfui2viycrcfg7ejfr');
60define('LOGGED_IN_SALT', '7t2egucfhgnp5skmgyry4tpoatev9e1dghqdssvfmwcsyodketufdinjtkiqgrzx');
61define('NONCE_SALT', 'pw0bpb7kiidvb0cqkz901cswpohe2vp23rr8xwypthauhvihtf2lhajjoins1zce');
62
63/**#@-*/
64
65/**
66 * WordPress Database Table prefix.
67 *
68 * You can have multiple installations in one database if you give each
69 * a unique prefix. Only numbers, letters, and underscores please!
70 */
71$table_prefix = 'wpul_';
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 * For information on other constants that can be used for debugging,
81 * visit the Codex.
82 *
83 * @link https://codex.wordpress.org/Debugging_in_WordPress
84 */
85define('WP_DEBUG', false);
86
87/* That's all, stop editing! Happy blogging. */
88
89/** Absolute path to the WordPress directory. */
90if ( !defined('ABSPATH') )
91 define('ABSPATH', dirname(__FILE__) . '/');
92
93/** Sets up WordPress vars and included files. */
94require_once(ABSPATH . 'wp-settings.php');