WP CONFIG
<?php
/**
* Custom WordPress configurations on "wp-config.php" file.
*
* This file has the following configurations: MySQL settings, Table Prefix, Secret Keys, WordPress Language, ABSPATH and more.
* For more information visit {@link https://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php} Codex page.
* Created using {@link https://generatewp.com/wp-config/ wp-config.php File Generator} on GenerateWP.com.
*
* @package WordPress
* @generator GenerateWP.com
*/
/* MySQL settings */
define( 'DB_NAME', 'database_name_here' );
define( 'DB_USER', 'username_here' );
define( 'DB_PASSWORD', 'password_here' );
define( 'DB_HOST', 'localhost' );
define( 'DB_CHARSET', 'utf8mb4' );
/* MySQL database table prefix. */
$table_prefix = 'wp_';
/* Authentication Unique Keys and Salts. */
define('AUTH_KEY', '!I=o9gS$nmj4+a`[F; ?^n&OIMWvDbU]_I5Nw');
define('SECURE_AUTH_KEY', '+LcSt]=e(+9m[Wm*EP|EJco! .4xAj39BKX|l.P,aE.hF!S]|8,NGe+tae(T5dmq');
define('LOGGED_IN_KEY', 'j5+Y{!I*M%*!+YhZ;s~UK(8$j4YQ88XpGET?U+/=@GqT|W=:H5?A^NPTcs:,jcQG');
define('NONCE_KEY', 'q;2S&]$ShR,VZ|r$|fu?Leid]^8:^tX@T2UOo?!yYrfr%%5~~8k`ZT?QG%r6ni;p');
define('AUTH_SALT', 'yOA-GInAPi&gou=(QEDqiS3,@Q5Ow c-6>8go~');
define('SECURE_AUTH_SALT', 'zno(mTZr|^<h`xUSN;OVx{&ld1rR=%Fs`V90qzld:cr^RMlh@RX?{hJn,<c7o8sN');
define('LOGGED_IN_SALT', '#qbYAhVZ#~O@5~ !WF}3]|qX(+QP5L0|oSB&4mFZp)@#&j)Q{m:cOG0<Qlf:|+93');
define('NONCE_SALT', '{ s?cQPu:$,4vk+;LF(X/1MsNDTr)o:Nl-@kl;06(t7I)HMq=fHTEt/`u`z!ADuB');
/* WordPress debug mode for developers. */
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', true );
define( 'SCRIPT_DEBUG', true );
/* PHP Memory */
define( 'WP_MEMORY_LIMIT', '64M' );
define( 'WP_MAX_MEMORY_LIMIT', '256M' );
/* WordPress Cache */
define( 'WP_CACHE', true );
/* Compression */
define( 'COMPRESS_CSS', true );
define( 'COMPRESS_SCRIPTS', true );
define( 'CONCATENATE_SCRIPTS', true );
define( 'ENFORCE_GZIP', true );
/* Updates */
define( 'WP_AUTO_UPDATE_CORE', true );
define( 'DISALLOW_FILE_EDIT', true );
/* Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
/* Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');