<?php
/* Environment */
define( 'WP_ENVIRONMENT_TYPE', 'production' );
/* Database connection */
define( 'DB_NAME', 'your_own_database_name' );
define( 'DB_USER', 'your_own_database_user' );
define( 'DB_PASSWORD', 'your_own_database_password' );
define( 'DB_HOST', 'localhost' );
define( 'DB_CHARSET', 'utf8mb4' );
define( 'DB_COLLATE', 'utf8mb4_general_ci' );
/* Tables */
$table_prefix = 'wpvda9mx_';
/* Security */
/* Security Keys */
define( 'AUTH_KEY', '@3cI/J;zzW2v3tB;@~Dc;^,<l=:sgNwZIQHe?}y(FvVqn-6QE,#p,{f1v~W@$yU}' );
define( 'SECURE_AUTH_KEY', 'H4@X>dKdl-*][9Ynd4*!DKw2U0Ze(j9dv6aM#]-$*qDh:cQ>D6&MJRg2![thvm&i' );
define( 'LOGGED_IN_KEY', 'cI2DZF5n_G[FN>XQ?W<;%c9qJkv<-se}@[NY5CsqCxfwEV{L]9#$G_%8^MBgT=AM' );
define( 'NONCE_KEY', 'w|#2C]H9D,;uf-sJ@26W}6=$-$6TxkfW26>Q+&H/Y@U,r*j-BydQ$zRk=g:p+AL]' );
define( 'AUTH_SALT', '/1p9elU/v7%qjj:g5Q?izB|_QYnr>VWN:=}!peSB+fE+~.Z2&G&XV[f;3rj7zqwH' );
define( 'SECURE_AUTH_SALT', '!XI+^PPa4g3/k,#fK~}H7N2b#XlLHrP[aEn2FEsOk5j6l+aF^.vT!1@YQ+2V3ZV_' );
define( 'LOGGED_IN_SALT', ',KN9|+5u+$Sn1(I{LQeTxmq(k7Dza?K(Ipt#B8An~8_([@Ac$qQgV7>>KOS<&^{c' );
define( 'NONCE_SALT', '.=/!u##b45M%$_REKdXS$O&PcSUlwvTqDw.myJ74cjQ+Bj7&CB:d()p0(mi>%IqS' );
/* HTTPS */
define( 'WP_DISABLE_FATAL_ERROR_HANDLER', false );
define( 'WP_DISABLE_ADMIN_EMAIL_VERIFY_SCREEN', false );
/* URL / Path */
/* Cookies */
define( 'TEST_COOKIE', 'wordpress_test_cookie' );
define( 'COOKIEHASH', 'aHq29QOTxIrQJkugPP7LbiN0eDpJn2RwPOCvKNpyjVSA4FEWbm6D0HQFY3b5lGTf' );
define( 'LOGGED_IN_COOKIE', 'wordpress_logged_in_aHq29QOTxIrQJkugPP7LbiN0eDpJn2RwPOCvKNpyjVSA4FEWbm6D0HQFY3b5lGTf' );
define( 'SECURE_AUTH_COOKIE', 'wordpress_logged_in_aHq29QOTxIrQJkugPP7LbiN0eDpJn2RwPOCvKNpyjVSA4FEWbm6D0HQFY3b5lGTf' );
define( 'AUTH_COOKIE', 'wordpress_aHq29QOTxIrQJkugPP7LbiN0eDpJn2RwPOCvKNpyjVSA4FEWbm6D0HQFY3b5lGTf' );
define( 'PASS_COOKIE', 'wordpresspass_aHq29QOTxIrQJkugPP7LbiN0eDpJn2RwPOCvKNpyjVSA4FEWbm6D0HQFY3b5lGTf' );
define( 'USER_COOKIE', 'wordpressuser_aHq29QOTxIrQJkugPP7LbiN0eDpJn2RwPOCvKNpyjVSA4FEWbm6D0HQFY3b5lGTf' );
define( 'RECOVERY_MODE_COOKIE', 'wordpress_rec_aHq29QOTxIrQJkugPP7LbiN0eDpJn2RwPOCvKNpyjVSA4FEWbm6D0HQFY3b5lGTf' );
/* Content */
define( 'AUTOSAVE_INTERVAL', 30 );
define( 'WP_POST_REVISIONS', 5 );
define( 'MEDIA_TRASH', true );
define( 'EMPTY_TRASH_DAYS', 7 );
define( 'WP_MAIL_INTERVAL', 86400 );
/* Memory */
define( 'WP_MEMORY_LIMIT', '128M' );
define( 'WP_MAX_MEMORY_LIMIT', '256M' );
/* Updating */
define( 'AUTOMATIC_UPDATER_DISABLED', false );
define( 'WP_AUTO_UPDATE_CORE', 'minor' );
define( 'CORE_UPGRADE_SKIP_NEW_BUNDLED', true );
/* File edition */
define( 'DISALLOW_FILE_MODS', false );
define( 'DISALLOW_FILE_EDIT', true );
define( 'IMAGE_EDIT_OVERWRITE', true );
/* Performance */
define( 'WP_CACHE', true );
define( 'WP_CACHE_KEY_SALT', 'ka8ml1974kse0ms22m:' );
define( 'COMPRESS_CSS', true );
define( 'COMPRESS_SCRIPTS', true );
define( 'CONCATENATE_SCRIPTS', false );
define( 'ENFORCE_GZIP', true );
/* Cron */
define( 'DISABLE_WP_CRON', false );
define( 'ALTERNATE_WP_CRON', false );
define( 'WP_CRON_LOCK_TIMEOUT', 60 );
/* FTP Access */
/* Plugins Must-Use */
/* Filtering */
define( 'DISALLOW_UNFILTERED_HTML', false );
define( 'ALLOW_UNFILTERED_UPLOADS', false );
/* Feed reader */
define( 'MAGPIE_CACHE_ON', true );
define( 'MAGPIE_CACHE_DIR', 'cache' );
define( 'MAGPIE_CACHE_AGE', 3600 );
define( 'MAGPIE_CACHE_FRESH_ONLY', false );
define( 'MAGPIE_DEBUG', false );
define( 'MAGPIE_USER_AGENT', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0' );
define( 'MAGPIE_FETCH_TIME_OUT', 5 );
define( 'MAGPIE_USE_GZIP', true );
/* MultiSite */
define( 'WP_ALLOW_MULTISITE', false );
define( 'WP_DEFAULT_THEME', 'twentytwenty' );
/* External URL Requests */
define( 'WP_HTTP_BLOCK_EXTERNAL', false );
if ( WP_HTTP_BLOCK_EXTERNAL ) {
define( 'WP_ACCESSIBLE_HOSTS', '*.wordpress.org,*.github.com' );
}
/* File permissions */
/* Proxy */
/* Debug */
define( 'WP_DEBUG', false );
if ( WP_DEBUG ) {
define( 'WP_DEBUG_DISPLAY', false );
define( 'WP_DEBUG_LOG', false );
}
define( 'SCRIPT_DEBUG', false );
define( 'SAVEQUERIES', false );
/* Do not change anything else after this line! Thank you! */
if ( ! defined( 'ABSPATH' ) )
define( 'ABSPATH', dirname( __FILE__ ) . '/' );
require_once ABSPATH . 'wp-settings.php';