Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

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 http://generatewp.com/wp-config/ wp-config.php File Generator} on GenerateWP.com.
 *
 * @package WordPress
 * @generator GenerateWP.com
 */


/* MySQL settings */
define( 'DB_NAME',     'local' );
define( 'DB_USER',     'root' );
define( 'DB_PASSWORD', 'root' );
define( 'DB_HOST',     'localhost' );
define( 'DB_CHARSET',  'utf8mb4' );
define( 'DB_COLLATE',  'utf8mb4_unicode_ci' );


/* MySQL database table prefix. */
$table_prefix = 'sau_';
define( 'CUSTOM_USER_TABLE',      $table_prefix . 'private_user' );
define( 'CUSTOM_USER_META_TABLE', $table_prefix . 'private_usermeta' );


/* Authentication Unique Keys and Salts. */
define('AUTH_KEY',         '&}cTMyS[3;&:hFZ8=2LUh*}X;fPRs3i3PM)u-~:TU8y=_%y*S?F5yb]2Qs-ac3ok2C&hUl%$*,,EaG}!GYxy+x~{}O2+7Ad~%+bwx1');
define('LOGGED_IN_KEY',    '13VXl7?-~B|UWKJg,z&aIvcEF)~!sQOW9`+-!+V-w+JKiGU`CVznH@?!:*gJry,r');
define('NONCE_KEY',        '|6fdOU; xi?+y<W[YV].#01H#EkF9/G_1Ki;FT!GDwc16r~Ro9ycsp}n$S@963oR');
define('SECURE_AUTH_SALT', '0o#Ok!h/n=%T)w%<6]|Q=OpU6R*xBy 9e6pNR3ZXoCp&@^z');
define('LOGGED_IN_SALT',   'A++ b&');
define('NONCE_SALT',       '|?n-:-R)S|1BShe+hcZx[Q,6fj=<m<f+MrXDxo6=bgp7Yl3l)NJ#RJ6qh</AZS');


/* Specify maximum number of Revisions. */
define( 'WP_POST_REVISIONS', '2' );
/* Media Trash. */
define( 'MEDIA_TRASH', false );


/* Multisite. */
define( 'WP_ALLOW_MULTISITE', false );


/* 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', '512' );
define( 'WP_MAX_MEMORY_LIMIT', '1024' );


/* WordPress Cache */
define( 'WP_CACHE', false );


/* Compression */
define( 'COMPRESS_CSS',        false );
define( 'COMPRESS_SCRIPTS',    false );
define( 'CONCATENATE_SCRIPTS', false );
define( 'ENFORCE_GZIP',        false );


/* Updates */
define( 'WP_AUTO_UPDATE_CORE', 'minor' );
define( 'DISALLOW_FILE_MODS', false );
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');