My Standard WP-Config w/ 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', 'utf8mb4' );
/* MySQL database table prefix. */
$table_prefix = 'wp_';
/* Authentication Unique Keys and Salts. */
define('AUTH_KEY', 'r8tD-vpFdS_,`1ERmTgoMWxqze;Akv-8CCV>U>$5k/~PW|TDm/!5kAZ?X_,;lS[q');
define('SECURE_AUTH_KEY', 'x06-2GM7gax<M@&=]-DdU3OSq#PlHzORHI?3_lijGtzp^(5XS><|{Z5v8,q}fZTyBG~p*I1GrC_)gn5-Cs:7nQ>08QB(d`rBk}t]agBcI#p#O^F|VR1');
define('AUTH_SALT', '0P)Cg3P`i&]g~ ?Oq)(>j#5G%tLY..j!*pmd*3aC&38p2u|BZ#fYV8CgW]4|');
define('SECURE_AUTH_SALT', '9+`yK`~sIfMyyp,NrOJgVf2LlxTeyeHS=^9g<=NQ2li`7PnyvyWSfK1dW&%zLl{9');
define('LOGGED_IN_SALT', ',Wkp(N6;JGr2m*H)? ,rhIwaoB%sHpk|R/>RX ');
define('NONCE_SALT', '-4W+d2o=H`t*>mTOBjd,93sen{:VTB:*/b,/rXE.e4S+/I.+R$FpWKhUc^q3++7_');
/* SSL */
define( 'FORCE_SSL_LOGIN', true );
define( 'FORCE_SSL_ADMIN', true );
/* Custom WordPress URL. */
define( 'WP_SITEURL', 'https://sgg.sitegeeks.com' );
define( 'WP_HOME', 'https://sgg.sitegeeks.com' );
/* AutoSave Interval. */
define( 'AUTOSAVE_INTERVAL', '300' );
/* Specify maximum number of Revisions. */
define( 'WP_POST_REVISIONS', '3' );
/* Media Trash. */
define( 'MEDIA_TRASH', true );
/* WordPress debug mode for developers. */
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );
define( 'SCRIPT_DEBUG', true );
define( 'SAVEQUERIES', false );
/* PHP Memory */
define( 'WP_MEMORY_LIMIT', '256M' );
define( 'WP_MAX_MEMORY_LIMIT', '384M' );
/* WordPress Cache */
define( 'WP_CACHE', false );
/* Compression */
define( 'COMPRESS_CSS', false );
define( 'COMPRESS_SCRIPTS', false );
define( 'CONCATENATE_SCRIPTS', false );
define( 'ENFORCE_GZIP', true );
/* CRON */
define( 'DISABLE_WP_CRON', 'true' );
/* Updates */
define( 'WP_AUTO_UPDATE_CORE', false );
define( 'DISALLOW_FILE_MODS', 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');