Test2_wpconfig
<?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', 'database_name_here' );
define( 'DB_USER', 'username_here' );
define( 'DB_PASSWORD', 'password_here' );
define( 'DB_HOST', 'localhost' );
define( 'DB_CHARSET', 'utf8mb4' );
define( 'DB_COLLATE', 'utf8_general_ci' );
/* MySQL database table prefix. */
$table_prefix = 'wp_';
/* Authentication Unique Keys and Salts. */
define('AUTH_KEY', ' 7pchE>]F>gHu>|hsB3+;a%f$)Fw[(d42s0L-d4ot;hJjFP,ULp+cFVe');
define('SECURE_AUTH_KEY', 'QQIkIxN^bd(bDjaq`+!&ubdb9OhYCV[p,)FvWU;CT&dxy$c0:~LH.[Urbu*:|&by');
define('LOGGED_IN_KEY', 'd!J5Xkjk^7E/Q(d/}y-+#-2w7,r9Yfv#9q1dZ.L&qa?o$WE@s)yB+');
define('NONCE_KEY', 'j.(T)MEhI-(97G-Jud,A-q Lv#3l&oy3i3Z-yRQwCuGQ+}(L%RV+da2RP!m<nOFN');
define('AUTH_SALT', 'vPUJtMA;^z)-*2WNVaJHbX0+uIt1=JpXX-zRopP$2CRu_5?#(W_xXwf_.to+If-p');
define('SECURE_AUTH_SALT', 'QQZJ@<Vv#F[f!iQL+6N%a;P;r82RHbNVYCmMp2c8yUFh{8=TCKn94iGc#UP*F`d=');
define('LOGGED_IN_SALT', 'M$-kSK$a6PR$^`8aF::Y66q30)bUn+cds{FqU1d,n7b|,zmb_r@}YfWe4{{#81!y');
define('NONCE_SALT', '6q:d-,M6kClipoWJ482k,Bwl]tjTo4MZaMvtDInh4KI2}vY]A@^D?4}P+}TJ%H3K');
/* SSL */
define( 'FORCE_SSL_LOGIN', true );
define( 'FORCE_SSL_ADMIN', true );
/* Custom WordPress URL. */
define( 'WP_SITEURL', 'http://example.com' );
define( 'UPLOADS', 'http://example.com/wp-content/MYuploads' );
/* Specify maximum number of Revisions. */
define( 'WP_POST_REVISIONS', '5' );
/* 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', '128' );
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 );
/* FTP */
define( 'FTP_USER', 'uuu' );
define( 'FTP_PASS', 'ppp' );
define( 'FTP_HOST', 'hhh' );
define( 'FTP_SSL', true );
/* Updates */
define( 'WP_AUTO_UPDATE_CORE', 'minor' );
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');