<?php
define( 'WP_CACHE', true );

/**
 * 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( 'DB_NAME', '' );

/** Database username */
define( 'DB_USER', '' );

/** Database password */
define( 'DB_PASSWORD', '' );

/** Database hostname */
define( 'DB_HOST', '' );

/** 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', 'lC9+kC/2j]17*0kpPh6vl4iI(J1Y54#R8%Lc]+np:_/Xy%BgsTOmGxdN]j3Dl-/e');
define('SECURE_AUTH_KEY', '#180K_]dXq7e31PeDx(Cl7xFzdsjS59@@*3a1-c)aQt*]D#&io%QF-7849([qe75');
define('LOGGED_IN_KEY', 'T~s6y1:lbh2:U_-@2#5Gl25bCl7w8I_Fy]jc28[YA|WNfgFUZBF1!lO9&!t92@b9');
define('NONCE_KEY', '9~WF04F!3s/3i4V~J[8H0#1g_H9(+|T%|_Y|lWwvh:7q*ey:d51z-XC9;%[62mX9');
define('AUTH_SALT', '2Tb&gG*G0bmqS0sJ9EJ[G3@@RKm3tjc4Gqh1%4BZ%|vT3;uF8d#6O0;0ls0C[z8O');
define('SECURE_AUTH_SALT', '9oSgA47];QwLE:+k1670UKI:YhYm174Pk_4FQn2JL6#](4Q~o6K+Vz:1vo231(~c');
define('LOGGED_IN_SALT', 'dR*f6_!*|2[t%6UU5aaD5gT9]*&)7n4&#r+71:UU843yEnS&dP)_b1*6E-[u4*G@');
define('NONCE_SALT', 'ZQ)6N!+E-*jg/-ZuJ2g;@0W:23/o9886U|)*8zgRmZ05;(5~3+5_LsAwT;9]7eWO');


/**#@-*/

/**
 * 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 = 'kukMSgWGT_';


/* Add any custom values between this line and the "stop editing" line. */

define('WP_ALLOW_MULTISITE', true);
define('WP_AUTO_UPDATE_CORE', false);

/**
 * 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. */
// Increase PHP limits for Duplicator
@ini_set('max_execution_time', 3600);
@ini_set('max_input_time', 3600);
@ini_set('memory_limit', '1024M');
set_time_limit(3600);

/** 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';
