Test Site template 1 wp-config.php Generator
<?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', 'utf8' );
/* MySQL database table prefix. */
$table_prefix = 'wp_';
/* Authentication Unique Keys and Salts. */
define('AUTH_KEY', '2!DWPO{M|t5Qp+_gV$SSxpwO7*K3.8@F$uOfjqcx`CU^j&IW6#te+tt$5IJ~c@Er');
define('SECURE_AUTH_KEY', 'qy%AG-dgGF}8xsV0rffCxbs|[!&Q;a^2|ylE#j,YV.>T^ov-.hd&K1kY4#zv+wXX');
define('LOGGED_IN_KEY', ']HSJ=VvaLbsw3mQTHGgO1+C>[N6kgNa|]%3}yb>=I|a__4|i/Ou2d;<?-$t(G6eo');
define('NONCE_KEY', 'ff.^Bs-Cwr|yc,hBgU $I');
define('AUTH_SALT', '%RTu5A5%_&E.QMHv&UaURXL*Oyo/5VKWXh(|ebEZt2Lj2cs!k{>8/vxEf,!A43;Y');
define('SECURE_AUTH_SALT', 'sEWWA|.4U^oZ&H|z1{B2NH,=(m%3]zMX9,Oq[QCmp0>(a=m-?u.g)kpg8SzvTNN+Zu/r1-`| M9*$#(VTD>');
define('NONCE_SALT', 'Nwd@ D4ftZ#lV(+VCAxRW/- CNsU.p!@YY|@R4Y?&|,b8;b#wqEiYw?=#OdS&Kjd');
/* WordPress Localized Language. */
define( 'WPLANG', 'it_IT' );
/* Media Trash. */
define( 'MEDIA_TRASH', true );
/* Multisite. */
define( 'WP_ALLOW_MULTISITE', true );
/* WordPress debug mode for developers. */
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_DISPLAY', true );
/* PHP Memory */
define( 'WP_MEMORY_LIMIT', '64M' );
define( 'WP_MAX_MEMORY_LIMIT', '256M' );
/* WordPress Cache */
define( 'WP_CACHE', true );
/* Compression */
define( 'COMPRESS_CSS', false );
define( 'COMPRESS_SCRIPTS', false );
define( 'CONCATENATE_SCRIPTS', true );
define( 'ENFORCE_GZIP', false );
/* CRON */
define( 'DISABLE_WP_CRON', 'false' );
define( 'ALTERNATE_WP_CRON', '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');