<?php
/**
* The base configuration for WordPress
*
* The wp-config.php creation script uses this file during the installation.
* You don't have to use the web site, you can copy this file to "wp-config.php"
* and fill in the values.
*
* This file contains the following configurations:
*
* * Database settings
* * Secret keys
* * Database table prefix
* * Localized language
* * ABSPATH
*
* @link https://wordpress.org/support/article/editing-wp-config-php/
*
* @package WordPress
*/
// ** Database settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('WP_CACHE', true);
define( 'WPCACHEHOME', '/home/blackyak/public_html/wordpress/wp-content/plugins/wp-super-cache/' );
define( 'DB_NAME', 'blackyak_adventure' );
/** Database username */
define( 'DB_USER', 'blackyak_adventure' );
/** Database password */
define( 'DB_PASSWORD', 'Blackyak@555' );
/** Database hostname */
define( 'DB_HOST', 'localhost:3306' );
/** Database charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );
/** The database collate type. Don't change this if in doubt. */
define( 'DB_COLLATE', '' );
/**#@+
* Authentication unique keys and salts.
*
* Change these to different unique phrases! You can generate these using
* the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}.
*
* 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.
*
* @since 2.6.0
*/
define('AUTH_KEY', ';8kl9+&9!A98emQEDC4S[4bH4R%1w6AVu0/US4R0871SR/)8iN[iTEAgNL04Do#2');
define('SECURE_AUTH_KEY', '~7bs;8j;b@s5k@Ja*418-uY7%B8Lqd|M]!3d6G:&(Gx9%Mi7%RZ5zE4|zB4;sY2t');
define('LOGGED_IN_KEY', 'wPSeX+L1#4W2Vs6L5h)w%J_UNGEX4x+9#e2St[0t18yB5eY8fmKI7H|cJ/x4E6%y');
define('NONCE_KEY', '@0yoPESwcmKj2b7d-iC;t2n*ub9a!d6s2AN9|5v6ilAOT@3|4&|2fEBMd:Xg8;-0');
define('AUTH_SALT', 'H9@izp+8L9E;i*SZ2Gaav6Tl3##36F@jxOKAx7Of5mAC4j3x1h5]cq&t3]v-;75a');
define('SECURE_AUTH_SALT', '8u%+wGv33oIkb69%25l2*J!cd!~-My6F4916I-k4g#us)1Pv(:Imsyb_G73W)29p');
define('LOGGED_IN_SALT', 'e7:23UuF5::9Zo97@qs~V55ch6k6(*R#T85w8*:vp3oPbl+6vt07to705(_1%t[S');
define('NONCE_SALT', 'qfS]mat29%978aYgt3324e*%xw4Zu1zt103TDWY7w:(dBG5Q6;9+:s@zkK(rO8O8');
/**#@-*/
/**
* WordPress database table prefix.
*
* You can have multiple installations in one database if you give each
* a unique prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = 'blackyak';
/* Add any custom values between this line and the "stop editing" line. */
define('WP_ALLOW_MULTISITE', true);
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*
* For information on other constants that can be used for debugging,
* visit the documentation.
*
* @link https://wordpress.org/support/article/debugging-in-wordpress/
*/
if ( ! defined( 'WP_DEBUG' ) ) {
define( 'WP_DEBUG', false );
}
/* That's all, stop editing! Happy publishing. */
/** Absolute path to the WordPress directory. */
if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', __DIR__ . '/' );
}
/** Sets up WordPress vars and included files. */
require_once ABSPATH . 'wp-settings.php';