Skip to content

Instantly share code, notes, and snippets.

@2hands10fingers
Created May 18, 2017 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 2hands10fingers/b8f1574b030dfec4fa50eb7dec9f9c12 to your computer and use it in GitHub Desktop.
Save 2hands10fingers/b8f1574b030dfec4fa50eb7dec9f9c12 to your computer and use it in GitHub Desktop.
<?php
/**
* The base configuration for WordPress
*
* The wp-config.php creation script uses this file during the
* installation. You don't have to use the web site, you can
* copy this file to "wp-config.php" and fill in the values.
*
* This file contains the following configurations:
*
* * MySQL settings
* * Secret keys
* * Database table prefix
* * ABSPATH
*
* @link https://codex.wordpress.org/Editing_wp-config.php
*
* @package WordPress
*/
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'square205');
/** MySQL database username */
define('DB_USER', 'root');
/** MySQL database password */
define('DB_PASSWORD', 'root');
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8mb4');
/** 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', 'frAub)MD(Gt0Lu,c[cI=-J[=POLyl9~@/7sW^@:ilVZ*D*6zw&i27;*P<$De;:z&');
define('SECURE_AUTH_KEY', 'haFMvb.E+e7&5u|?eZ=2%v{_I<P<}yNjd47y+N;!AUQ]c2 ww5U.!AskcJ+Jlg[d');
define('LOGGED_IN_KEY', 'qZUHj2WYy6UPnSYTJ=E%fuH]N|W`hhbX;~[pF@^?zzr?_dC~<PA-[iSs0L),tc!>');
define('NONCE_KEY', 'Aw]U?eBttT1j#Ow!Q64l/&!Y|1g6L7rGD2CY`h..vHqEJ:~fv[E1*U!6ptW)B6(M');
define('AUTH_SALT', 'C#Bs;ndnb-5n=iwD1%Vq60s+9!$)~s&OISt1_z rlZBXvtBIK(p>D-ZIrq<cPFHk');
define('SECURE_AUTH_SALT', 'J)S0fU&>`dnN;n$j}(F,XzZ~yX~)@0>`NO3MBo6yL>J4S F?VscO/X[IQ9Iht]^y');
define('LOGGED_IN_SALT', 'M];N=[rO(oj3e$!ocJ2 FL8WUH*wx6_tb$RU^p;OXC#,zR72qn#[LKU0.65G4j>D');
define('NONCE_SALT', 'CLAX4{CE1Z~P8qM%3XqqNrF$niq)Pqp}[hR2zME2,yl87JX3[35+s$gnX.#6&L b');
/**#@-*/
/**
* 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.
*
* For information on other constants that can be used for debugging,
* visit the Codex.
*
* @link https://codex.wordpress.org/Debugging_in_WordPress
*/
define('WP_DEBUG', false);
/* 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