Skip to content

Instantly share code, notes, and snippets.

@dainelmawer
Created March 6, 2017 05:54
Show Gist options
  • Save dainelmawer/855f4a51475949ec2894bde6852505b8 to your computer and use it in GitHub Desktop.
Save dainelmawer/855f4a51475949ec2894bde6852505b8 to your computer and use it in GitHub Desktop.
<?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' );
/* MySQL database table prefix. */
$table_prefix = 'wp_';
/* Authentication Unique Keys and Salts. */
define('AUTH_KEY', '(K-`y~]xs)o,}u1/%Loo4%9Y>Vpz)(9U),o&QCm-F/JGrcx|E0Xs,*;o:FE;M,R ');
define('SECURE_AUTH_KEY', 'Yj8$:F|>]%M;J~s/ZH$SlNG/>|94DxesVMDP+b9xnJTM$kw.YeYN~EX@R/Q4TNZN');
define('LOGGED_IN_KEY', '+m E/pGFP|$O]naC9I@NX|ich6!*]ZJkU2>P>];2Tm2|-0leawa6RAZ]q^:hg=zR');
define('NONCE_KEY', '-vlCh5$aC+Su*}I/|$%FBM0D2UHcZ!9_yIF094Wk=}0QOe1A=nOgqEe${##>*vzn7O)IW-@,+~wd{d&f0i6?9');
define('LOGGED_IN_SALT', '+JmKgDx^5VdEo$p^^-iAF-/MKLp7hOp/2!1aXW4!W[]dEcSsX;x-P+nfXWhXYG.+');
define('NONCE_SALT', '4={8MI|1Iz|.l[l2}|f-98~V<:r/[gw0>Tp.ulASzP^Sk`PmP:S~ FxYayCh+p:Y');
/* Specify maximum number of Revisions. */
define( 'WP_POST_REVISIONS', '2' );
/* Media Trash. */
define( 'MEDIA_TRASH', true );
/* Trash Days. */
define( 'EMPTY_TRASH_DAYS', '14' );
/* Multisite. */
define( 'WP_ALLOW_MULTISITE', false );
/* WordPress debug mode for developers. */
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );
define( 'SCRIPT_DEBUG', true );
define( 'SAVEQUERIES', false );
/* PHP Memory */
define( 'WP_MEMORY_LIMIT', '128' );
define( 'WP_MAX_MEMORY_LIMIT', '256' );
/* WordPress Cache */
define( 'WP_CACHE', false );
/* Compression */
define( 'COMPRESS_CSS', true );
define( 'COMPRESS_SCRIPTS', true );
define( 'CONCATENATE_SCRIPTS', true );
define( 'ENFORCE_GZIP', true );
/* CRON */
define( 'DISABLE_WP_CRON', 'true' );
define( 'ALTERNATE_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');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment