Created
August 7, 2013 11:45
-
-
Save schikulski/6173357 to your computer and use it in GitHub Desktop.
wp-config.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// =================================================== | |
// Load database info and local development parameters | |
// =================================================== | |
if ( file_exists( dirname( __FILE__ ) . '/wp-config-local.php' ) ) { | |
define( 'WP_LOCAL_DEV', true ); | |
define('WP_DEBUG', true); | |
require ('wp-config-local.php'); | |
} elseif (file_exists(dirname(__FILE__) . '/wp-config-playground.php')) { | |
define( 'WP_LOCAL_DEV', false ); | |
define('WP_DEBUG', true); | |
require ('wp-config-playground.php'); | |
} elseif (file_exists(dirname(__FILE__) . '/wp-config-production.php')) { | |
# production settings | |
define( 'WP_LOCAL_DEV', false ); | |
define('WP_DEBUG', false); | |
require ('wp-config-production.php'); | |
} | |
// ======================== | |
// Custom Content Directory | |
// ======================== | |
define( 'WP_CONTENT_DIR', dirname( __FILE__ ) . '/content' ); | |
define( 'WP_CONTENT_URL', 'http://' . $_SERVER['HTTP_HOST'] . '/content' ); | |
// ================================================ | |
// You almost certainly do not want to change these | |
// ================================================ | |
define( 'DB_CHARSET', 'utf8' ); | |
define( 'DB_COLLATE', '' ); | |
// ============================================================== | |
// Salts, for security | |
// Grab these from: https://api.wordpress.org/secret-key/1.1/salt | |
// ============================================================== | |
define( 'AUTH_KEY', 'put your unique phrase here' ); | |
define( 'SECURE_AUTH_KEY', 'put your unique phrase here' ); | |
define( 'LOGGED_IN_KEY', 'put your unique phrase here' ); | |
define( 'NONCE_KEY', 'put your unique phrase here' ); | |
define( 'AUTH_SALT', 'put your unique phrase here' ); | |
define( 'SECURE_AUTH_SALT', 'put your unique phrase here' ); | |
define( 'LOGGED_IN_SALT', 'put your unique phrase here' ); | |
define( 'NONCE_SALT', 'put your unique phrase here' ); | |
// ============================================================== | |
// Table prefix | |
// Change this if you have multiple installs in the same database | |
// ============================================================== | |
$table_prefix = 'wp_'; | |
// ================================ | |
// Language | |
// Leave blank for American English | |
// ================================ | |
define('WPLANG', 'nb_NO'); | |
// =========== | |
// Hide errors | |
// =========== | |
ini_set( 'display_errors', 0 ); | |
define( 'WP_DEBUG_DISPLAY', false ); | |
// ================================================================= | |
// Debug mode | |
// Debugging? Enable these. Can also enable them in local-config.php | |
// ================================================================= | |
// define( 'SAVEQUERIES', true ); | |
// define( 'WP_DEBUG', true ); | |
// ====================================== | |
// Load a Memcached config if we have one | |
// ====================================== | |
if ( file_exists( dirname( __FILE__ ) . '/memcached.php' ) ) | |
$memcached_servers = include( dirname( __FILE__ ) . '/memcached.php' ); | |
// =========================================================================================== | |
// This can be used to programatically set the stage when deploying (e.g. production, staging) | |
// =========================================================================================== | |
define( 'WP_STAGE', '%%WP_STAGE%%' ); | |
define( 'STAGING_DOMAIN', '%%WP_STAGING_DOMAIN%%' ); // Does magic in WP Stack to handle staging domain rewriting | |
// =================== | |
// Bootstrap WordPress | |
// =================== | |
if ( !defined( 'ABSPATH' ) ) | |
define( 'ABSPATH', dirname( __FILE__ ) . '/wp/' ); | |
require_once( ABSPATH . 'wp-settings.php' ); | |
define('SCRIPT_DEBUG', true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment