starting dev wp-config with debug
<?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', 'utf8' );
/* MySQL database table prefix. */
$table_prefix = 'wp_';
/* Authentication Unique Keys and Salts. */
define('AUTH_KEY', 'uB0Rbl|Dj 7##XdGgwo ?TJ.TH^~y2yUx, 2o`Viih9(qBXmmyw9u@X{<6LEPe-S');
define('SECURE_AUTH_KEY', 'yRWk7dLghFy`mfP+mwv9u5ewzA2J,zU6:Ms.T%Z;$8fN/KI~V/X.cOPfFe~:^ald');
define('LOGGED_IN_KEY', '<bU+/KDa]wTRy!7(');
define('LOGGED_IN_SALT', '2WIH;a!!jJe6[{#-r(.,t7~LGi(BRZMlQu}r9>Ht-iaSuFtxp|?NW U+Ao;;9G%2');
define('NONCE_SALT', 'qgIvxs$kb#5U!4LeN^Y>~ {kAlFLS1mc#Adt40g}0g305xt{y{7.U-fR?z!#l&}*');
/* WordPress Localized Language. */
define( 'WPLANG', '' );
/* Specify maximum number of Revisions. */
define( 'WP_POST_REVISIONS', '4' );
/* Trash Days. */
define( 'EMPTY_TRASH_DAYS', '10' );
/* WordPress debug mode for developers. */
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', false );
define( 'WP_DEBUG_DISPLAY', true );
define( 'SCRIPT_DEBUG', true );
define( 'SAVEQUERIES', false );
/* PHP Memory */
/* Updates */
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');