Skip to content

Instantly share code, notes, and snippets.

@superbiche
Created October 27, 2015 20:19
Show Gist options
  • Save superbiche/efc44103487b64763780 to your computer and use it in GitHub Desktop.
Save superbiche/efc44103487b64763780 to your computer and use it in GitHub Desktop.
<?php
define( 'DB_NAME', '' );
define( 'DB_USER', '' );
define( 'DB_PASSWORD', '' );
define( 'DB_HOST', '127.0.0.1' );
define( 'WPLANG', '' );
define( 'WP_DEBUG', true );
define( 'SCRIPT_DEBUG', true );
<?php
if ( file_exists( dirname( __FILE__ ) . '/wp-config-local.php' ) ) {
include( dirname( __FILE__ ) . '/wp-config-local.php' );
}
/** The name of the database for WordPress. */
if ( ! defined( 'DB_NAME' ) ) {
define( 'DB_NAME', '' );
}
/** MySQL database user name. */
if ( ! defined( 'DB_USER' ) ) {
define( 'DB_USER', '' );
}
/** MySQL database password. */
if ( ! defined( 'DB_PASSWORD' ) ) {
define( 'DB_PASSWORD', '' );
}
/** MySQL host name. */
if ( ! defined( 'DB_HOST' ) ) {
define( 'DB_HOST', '127.0.0.1' );
}
/** WordPress localized language. Defaults to 'en_EN'. */
if ( ! defined( 'WPLANG' ) ) {
define( 'WPLANG', '' );
}
/** WordPress debugging mode. */
if ( ! defined( 'WP_DEBUG' ) ) {
define( 'WP_DEBUG', false );
}
/** WordPress memory limit. Default: 40M. Multi site: 64M. Default max.: 256M. */
define( 'WP_MEMORY_LIMIT', '256M' );
/** Database charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );
/** The database collate type. */
define( 'DB_COLLATE', '' );
/** Authentication unique keys and salts. */
define( 'AUTH_KEY', '' );
define( 'SECURE_AUTH_KEY', '' );
define( 'LOGGED_IN_KEY', '' );
define( 'NONCE_KEY', '' );
define( 'AUTH_SALT', '' );
define( 'SECURE_AUTH_SALT', '' );
define( 'LOGGED_IN_SALT', '' );
define( 'NONCE_SALT', '' );
/** WordPress database table prefix. */
$table_prefix = 'wp_';
if ( ! defined( 'WP_DEFAULT_THEME' ) ) {
define( 'WP_DEFAULT_THEME', 'twentytwelve' );
}
/** Disallow anything that creates, deletes, or updates core, plugin, or theme files. Files in uploads are excepted. */
if ( ! defined( 'DISALLOW_FILE_MODS' ) ) {
define( 'DISALLOW_FILE_MODS', true );
}
/** Defines functionality related WordPress constants. */
if ( ! defined( 'WP_POST_REVISIONS' ) ) {
define( 'WP_POST_REVISIONS', 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' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment