Skip to content

Instantly share code, notes, and snippets.

@jamland
Created April 22, 2015 12:14
Show Gist options
  • Save jamland/640edb3eb179626c03de to your computer and use it in GitHub Desktop.
Save jamland/640edb3eb179626c03de to your computer and use it in GitHub Desktop.
<?php
/**
* The base configurations of the WordPress.
*
* This file has the following configurations: MySQL settings, Table Prefix,
* Secret Keys, and ABSPATH. You can find more information by visiting
* {@link http://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php}
* Codex page. You can get the MySQL settings from your web host.
*
* This file is used by the wp-config.php creation script during the
* installation. You don't have to use the web site, you can just copy this file
* to "wp-config.php" and fill in the values.
*
* @package WordPress
*/
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'wp_ironio');
/** MySQL database username */
define('DB_USER', 'root');
/** MySQL database password */
define('DB_PASSWORD', '');
/** MySQL hostname */
define('DB_HOST', '127.');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
/**#@+
* Authentication Unique Keys and Salts.
*
* Change these to different unique phrases!
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
* You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
*
* @since 2.6.0
*/
define('AUTH_KEY', '8RjLkS1w5fY6Lr3Oiq1YifPzlUopn79WcfAXmatug23Nx6ma6xKdV549g9rfoWKb');
define('SECURE_AUTH_KEY', 'W0wdAl_ySVz79L1SOQTU2eEAE7UIALuLanroVsIAdhvlkSgElOTGzUfCVsYXthpx');
define('LOGGED_IN_KEY', 'aorpRDfEkkT2N_q2cbjpYksBqfVKBsXNyUkl93RC22ISBJRuK2TUeZ65B9aOxBh7');
define('NONCE_KEY', 'QKAQV8bGqKdEMY6NmzQ2lOXIcQI9tnQCu9G1tIVIunEwcbVfwWVi1plZXdGBsy3A');
define('AUTH_SALT', '7PP6bd6Le3oT9i_7MyGsohWNyK1oxeq6O5oHpLGjTXdQKnEZPEMhhndo76kSQNil');
define('SECURE_AUTH_SALT', 'cln1cVddzzIu8wjAEgtCK5sZOT2iFmQyo7iE53D6KwnrleZgRkPjBJ_7avG3djPC');
define('LOGGED_IN_SALT', 'UbnxCrebLiVyLVML6SYzTuQ5is60d8oLj_e_jkpicx9LHZdcmBfVyyJMC8ryY0Ze');
define('NONCE_SALT', 'jAtFhKNB9FBQJttLPMnPtXSpcBTGk7dWG_vCTEc0kFHwljYs3z_bxo6zx3PnOXb_');
/**#@-*/
/**
* WordPress Database Table prefix.
*
* You can have multiple installations in one database if you give each a unique
* prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = 'wp_';
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*/
define('WP_DEBUG', true);
/*
define('TWITTER_CONSUMER_KEY', 'B6FNdNOP2eeraO5skZucvLKiA');
define('TWITTER_CONSUMER_SECRET', '4MGzX6DMkc62c4s1RTALzb0wvYbENpqRRt05caOrJTFyKMkKKA');
define('TWITTER_ACCESS_TOKEN', '44702364-DkaF0yY785DTX2KrYagmUQZUfxoPjR0CyjqMzBwlz');
define('TWITTER_ACCESSTOKEN_SECRET', 'YKSzcJqPt3LIVpiit4wFAbxme1IPcoKcH0yjaXPNR5BED');
*/
define('TWITTER_CONSUMER_KEY', 'WgWsPExsNDUW2Vr3bSkMT5e5q');
define('TWITTER_CONSUMER_SECRET', 'R2I42TeNqg9Sg8FrHogdAipv0prONLcxpmdx1fIQ1ZqBvrTArp');
define('TWITTER_ACCESS_TOKEN', '40060704-fMZpBB5MHtvmc8qbpMPECiwMORAjKBMXLbBZoYllV');
define('TWITTER_ACCESSTOKEN_SECRET', 'Djp4YqutBFwwPEFSxIjvMM2DXiBQngou2614eosmUsJEJ');
/* Multisite */
define('MULTISITE', true);
define('SUBDOMAIN_INSTALL', false);
define('DOMAIN_CURRENT_SITE', 'ironio.loc');
define('PATH_CURRENT_SITE', '/');
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1);
/* That's all, stop editing! Happy blogging. */
/** 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