Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Movix Default

<?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',  'utf8mb4' );


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


/* Authentication Unique Keys and Salts. */
define('AUTH_KEY',         ',@.rrOM|pBV7b_t|)O+eZN0/wl KAS`_+gj!:f{S*)86%t=|o-/3]kD8.W.m7N8V');
define('SECURE_AUTH_KEY',  'rySXqF5[5~}0B9gGtc5=hG<+>B@k:[{@Vrq+;iy*|');
define('LOGGED_IN_KEY',    '1BWLjQy,S;23&3SK_V5x2BkTUMwB;M@FOSB8kt`I;1-UJfi74kA+U*}2P-a.8;1@');
define('NONCE_KEY',        'n`*9bJv:D| LE^-2Cb!3tcFo');
define('AUTH_SALT',        '|4!*+L;wE1x:.2x^{JUAs^&?Je{/y6QuDls-b)mR2+T lv&wH');
define('LOGGED_IN_SALT',   'Pb1/-O(%5+.C#p-?ucdV,VzX:/O?a@)`?uZb|560!Bx`MM5J)1bw%PDyV%)|W^GE');
define('NONCE_SALT',       'P4jW3}-;B+76X:+3~&QPrMG6ScY Ml7+vXXN([f<DO]|U:;.ejcd7i$2z]w|tUNV');


/* SSL */
define( 'FORCE_SSL_LOGIN', true );
define( 'FORCE_SSL_ADMIN', true );


/* Specify maximum number of Revisions. */
define( 'WP_POST_REVISIONS', '3' );
/* Media Trash. */
define( 'MEDIA_TRASH', true );
/* Trash Days. */
define( 'EMPTY_TRASH_DAYS', '15' );


/* Multisite. */
define( 'WP_ALLOW_MULTISITE', false );


/* WordPress debug mode for developers. */
define( 'WP_DEBUG',         false );
define( 'WP_DEBUG_LOG',     false );
define( 'WP_DEBUG_DISPLAY', false );
define( 'SCRIPT_DEBUG',     false );
define( 'SAVEQUERIES',      false );


/* PHP Memory */
define( 'WP_MEMORY_LIMIT', '1024M' );


/* Compression */
define( 'COMPRESS_CSS',        true );
define( 'COMPRESS_SCRIPTS',    true );
define( 'CONCATENATE_SCRIPTS', true );
define( 'ENFORCE_GZIP',        true );


/* CRON */
define( 'DISABLE_WP_CRON',      'true' );


/* Updates */
define( 'WP_AUTO_UPDATE_CORE', false );
define( 'DISALLOW_FILE_MODS', true );
define( 'DISALLOW_FILE_EDIT', true );


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