Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Sample wp-config file

This has no value for anyone else, just a testing configuration file.

<?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 = 'wpdmm_';
define( 'CUSTOM_USER_TABLE',      $table_prefix . 'userdmm' );
define( 'CUSTOM_USER_META_TABLE', $table_prefix . 'userdmmmeta' );


/* Authentication Unique Keys and Salts. */
define('AUTH_KEY',         'nrg.SBuK^+I?lV(mh{;.T)-U_Au:lJ');
define('SECURE_AUTH_KEY',  ';#IJ6=nMlDf;$lB-[$BL|cUZ0@+.jKn R-o[U]#:q-H9*C[4FQC{0ZiKz&VX%H@y&L%,j#O[zs$G{&N`EhJ}LOLEYhF');
define('NONCE_KEY',        'Zmy:+eOesJ9IZ?MMGqy$@R+Rk>ic^?vwY1*t;%g,j_t` )CO0_,EsEB)n+2gMfj-');
define('AUTH_SALT',        '$>bx$9H+[!#]>M?odw#6k_(6_Y%$XTkxO^E5-Q7|K|8khM$N(sqBEQ*]^=fx-4d:');
define('SECURE_AUTH_SALT', ';Bd.-/O}VC4|,fhXs-Sf+|>DQH|xyD|YQ4[ix@-I[|oPN_=`u-Qf7&hpLn,>D?{l');
define('LOGGED_IN_SALT',   '<:BmK7D,xY~a+g*M^enB_}aLl7 PZlZ%abyt$6&5WO|y9#+?xZ-');


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


/* Custom WordPress URL. */
define( 'WP_CONTENT_URL', 'assets' );
define( 'UPLOADS',        'uploadsdmm' );
define( 'WP_PLUGIN_URL',  'pluginsdmm' );


/* Media Trash. */
define( 'MEDIA_TRASH', true );


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


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


/* 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');