Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

WP Config

WP Config Settings.

<?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',     'dbname' );
define( 'DB_USER',     'homestead' );
define( 'DB_PASSWORD', 'secret' );
define( 'DB_HOST',     'localhost' );
define( 'DB_CHARSET',  'utf8' );


/* MySQL database table prefix. */
$table_prefix = 'wp_';


/* Authentication Unique Keys and Salts. */
define('AUTH_KEY',         'q;EecREzG1J-x~9Iz#u//(h[4*sYreJ/{#w[QnJ_#_#F+1#Hera`LU3M)[email protected]< 8Z]2:mA+ha!?gMI[o5Bi');
define('NONCE_KEY',        'aP?;)?+&5t#GUko[<U+E0I2V53+SCOEdP9?+^~:GnP.}i?W2DtLF=xbC~Lt[QA-<');
define('AUTH_SALT',        ',*6|XAW.+goDta!Af53Z7rJ ~Z[[3Ud:0I|fF!!+#tkK=H,35uRj]am1R60vwI#P');
define('SECURE_AUTH_SALT', '}N-oflWY=WxBP446+CC^2!]GsPE6tR}([#Ry');
define('LOGGED_IN_SALT',   'Ghqy1KqaN?<D2V1<CHQ::.FWK@~*~CBg.]|3l)Y-4h-yE{7-MV~<1M*zd}#SN};h');
define('NONCE_SALT',       'Mipo=!X^f[0dO80stddZ/Ba|Yib(i|^*J*d SH$B+Sl+0BK8o<Cyq;aGs<:~{&G%');


/* WordPress Localized Language. */
define( 'WPLANG', 'es_ES' );


/* Custom WordPress URL. */
define( 'WP_SITEURL',     'http://wordpress.dev/' );
define( 'WP_HOME',        'http://wordpress.dev/' );
define( 'WP_CONTENT_URL', 'http://wordpress.dev/wp-content' );
define( 'UPLOADS',        'http://wordpress.dev/wp-content/uploads' );
define( 'WP_PLUGIN_URL',  'http://wordpress.dev/wp-content/plugins' );


/* Specify maximum number of Revisions. */
define( 'WP_POST_REVISIONS', '20' );
/* 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',     false );
define( 'WP_DEBUG_DISPLAY', true );
define( 'SCRIPT_DEBUG',     true );
define( 'SAVEQUERIES',      false );


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


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


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