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


/* MySQL database table prefix. */
$table_prefix = 'mtb_';
define( 'CUSTOM_USER_TABLE',      $table_prefix . 'cibernauta' );
define( 'CUSTOM_USER_META_TABLE', $table_prefix . 'cibernautameta' );


/* Authentication Unique Keys and Salts. */
define('AUTH_KEY',         ']&x_=]U3T{|&+k#+nh#Zz2EgFkmsI:N*,F acZD-MU!1|c]K:gM=+CpJwVU/<s#(');
define('SECURE_AUTH_KEY',  'IrE$9}7MZ~A)9a*)LD_37-h~@tNj4Vgd8+%9*2J^|~M]K0F^Br+q+UV1l{rh#/y#');
define('LOGGED_IN_KEY',    '+q:i,+LOVq~m+s`DAf@lXa_<CCl aFtWUj;L_e^%u-@&UyOobM )3u;8y!1hI-o|@y|z]n}r* -<`f]ju.p239|2WZb`[3Xe|~CzkbpeWWE.');
define('SECURE_AUTH_SALT', 'BJ(88ID~*QNE=%]:Zj&c+3[YP1gnQF,k~d~Nq!EJO]+N tVY*3Ox&K^VN)=ZB<TTcdkBF');
define('NONCE_SALT',       'Dff+GvZr7j``a L9J-pZ1c%Bg:Cjd}-x&##O!+@QN*HDffM#mJQnC0`ot)DlkLb}');


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


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


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


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