Zenerigy15
<?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 http://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 = 'Zen_';
define( 'CUSTOM_USER_TABLE', $table_prefix . 'zen_user' );
define( 'CUSTOM_USER_META_TABLE', $table_prefix . 'Zen_usermeta' );
/* Authentication Unique Keys and Salts. */
define('AUTH_KEY', 'Gs3{^]]_41+/]LLU(8f|y7wkxx;R|J;SOH}+p-%EM9W0gC|a8lI+ihyI(z)J%+e|');
define('SECURE_AUTH_KEY', 'wU|g<N-F5+dEUfrG^yZ-ep3F^bo@Uv:+V}:B-b6bftV3vK9K:Qu`bbh=7pG.*?A3lg^fw15UYcRq.l3f[[C+');
define('AUTH_SALT', '?SIlQ6>a8|^29.I1g|^+lna7}K3OL.*jA+y$7`fC@0F~4k+?jJzQ%EU&|`b|bUUIF{*=7X$kmC9+s;uR4CReUl#-:,bprQjjGf&:+WTu]+^');
define('LOGGED_IN_SALT', '$q@x4O%3umaNB78*M%C-8N#bw7+1`%~k+BmRHUnYEi_Wg}h(?lB,-{|w(9NfIDfz');
define('NONCE_SALT', '}J81P):*#CO9J3!Y,6i%9xHc%y/.p`Co+PC Cc/di.Zy0;oC0;-@7k#?,EeNBx0Q');
/* SSL */
define( 'FORCE_SSL_LOGIN', true );
define( 'FORCE_SSL_ADMIN', true );
/* WordPress Localized Language. */
define( 'WPLANG', 'en_CA' );
/* Media Trash. */
define( 'MEDIA_TRASH', true );
/* Multisite. */
define( 'WP_ALLOW_MULTISITE', true );
/* 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', '256M' );
define( 'WP_MAX_MEMORY_LIMIT', '500M' );
/* WordPress Cache */
define( 'WP_CACHE', true );
/* Compression */
define( 'COMPRESS_CSS', true );
define( 'COMPRESS_SCRIPTS', true );
define( 'CONCATENATE_SCRIPTS', true );
define( 'ENFORCE_GZIP', false );
/* CRON */
define( 'DISABLE_WP_CRON', 'false' );
/* 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');