Skip to content

Instantly share code, notes, and snippets.

@jpstokes
Created February 12, 2020 21:53
Show Gist options
  • Save jpstokes/052f0df099d34996a4e017a93873a477 to your computer and use it in GitHub Desktop.
Save jpstokes/052f0df099d34996a4e017a93873a477 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', 'wp_powertribe' );
/** MySQL database username */
define( 'DB_USER', 'root' );
/** MySQL database password */
define( 'DB_PASSWORD', 'toor' );
/** MySQL hostname */
define( 'DB_HOST', 'localhost:3306' );
/** 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', '9b|&aM 5sDc0XLjoQ6Vyh!Uy eJ3oyUb+6=u`4[.%/WNY Cd(2,isWFVkwovJ!gB' );
define( 'SECURE_AUTH_KEY', 'ava LgdWp#6Kyr2!KfqhBukEM`9!*:T%MK7FL#F}_iI`5;2Sk#_ZV2s]<Fu{IK1(' );
define( 'LOGGED_IN_KEY', '$*TpuF`Agr2=7rHtAyt?M^mDS&iKYsCiC^ 3:(eBqM{}M]Nx|)j(L?.mI^aQ](pv' );
define( 'NONCE_KEY', '|eO$ cpR]rVHJ2E}y`Gin=:Cl dz>PrKb6wj{y86n<po&]A<ZYeLcza[(h*~uo~K' );
define( 'AUTH_SALT', 'z|G>_H1|ges-:qu&WH`<.=Pc-+m.ucEX5,d[w3Lv)dS,E`j}XeCo8: jxUuWRHbu' );
define( 'SECURE_AUTH_SALT', '!%/:xqJ;rkuoOY/jx<hPiPG8enQ[X,+lA]v8uPD~/hA8+<OmPzVlF8@=l;(v)JBI' );
define( 'LOGGED_IN_SALT', ']P9b@=H%KKqGmqwf6UVz@7~kWiod&wgY>^u HuF1^c|r^[mVjRYtyn=+xdd/eZ^N' );
define( 'NONCE_SALT', 'a`,6/6?ZvyN[}po6(AnF&=oX4iS%fvs.bFf!R+ba}]6<nC&Nx3u*LA+Je#s>F9|L' );
define( 'WP_CACHE_KEY_SALT', 'Q#2g/[~p|S:0{G]rI{x08w~++3nD,buS%?`ahNMc`q6W9c?8+h}<]{uV$2PjeI+H' );
/**
* 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 = 'wpp_';
define( 'WP_DEBUG', false );
/* That's all, stop editing! Happy publishing. */
/** 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