Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

test 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',     'test' );
define( 'DB_USER',     'test' );
define( 'DB_PASSWORD', 'test' );
define( 'DB_HOST',     'localhost' );
define( 'DB_CHARSET',  'utf8mb4' );


/* MySQL database table prefix. */
$table_prefix = 'wp_';
define( 'CUSTOM_USER_TABLE',      $table_prefix . 'members' );
define( 'CUSTOM_USER_META_TABLE', $table_prefix . 'membermeta' );


/* Authentication Unique Keys and Salts. */
define('AUTH_KEY',         'dP1UShu|;;n=uQ_4EW2M_ti{]7BEQU^bwQ#q@>)gH8|W8/^~[grl?K@(=tk');
define('SECURE_AUTH_KEY',  '[|Avv/tcz%DhCO6;NXiX&|w');
define('LOGGED_IN_KEY',    'O6:>+cQ:5X$C?DE{k8WK_y!jY!YxGz,-a->|t$QTW6vR8Y$FW3M 6p@2PnB+N8en');
define('NONCE_KEY',        'I/q{$ }LneK=B}#4WeimGl1+wp-!7m]r)LZ6UBz;ZH+$Ge ONK8),w#,xpJ|>');
define('AUTH_SALT',        'ii}QKUZsjLSHcFHHBZJXxR EF5HwC;*-;CI{>?l#RS+-q2n*u(O*f;)]!rtRkhTa');
define('SECURE_AUTH_SALT', 'Yc0NfFVH]|llnO+TkJy3]q-v w9VUoLh#:N):evq&px`e{Xs5;ATP6|Gs8EB1vh}');
define('LOGGED_IN_SALT',   '#DCTZ){7tNur[-nA4m=@r{sHDr{j+ely(TOvwSe@^U_{vTrUg)M@CdC');
define('NONCE_SALT',       '-Me_-%b?(Jmv Iwl6TvO+osnL3@h{}Y>AK#jY_?cY?KHSpCoG*dQY,7&KZF|$eXJ');


/* SSL */
define( 'FORCE_SSL_LOGIN', true );
define( 'FORCE_SSL_ADMIN', true );


/* Custom WordPress URL. */
define( 'COOKIE_DOMAIN',  'mydomain' );


/* AutoSave Interval. */
define( 'AUTOSAVE_INTERVAL', '180' );


/* WordPress debug mode for developers. */
define( 'WP_DEBUG',         true );
define( 'WP_DEBUG_LOG',     true );
define( 'WP_DEBUG_DISPLAY', true );
define( 'SCRIPT_DEBUG',     true );
define( 'SAVEQUERIES',      true );


/* PHP Memory */
define( 'WP_MEMORY_LIMIT', '64M' );
define( 'WP_MAX_MEMORY_LIMIT', '512M' );


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


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


/* CRON */
define( 'DISABLE_WP_CRON',      'false' );
define( 'ALTERNATE_WP_CRON',    'true' );


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