File: /home/projects/bishopsappeal.ca/public/wp-config.php
<?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:
*
* * Database settings
* * Secret keys
* * Database table prefix
* * ABSPATH
*
* @link https://wordpress.org/documentation/article/editing-wp-config-php/
*
* @package WordPress
*/
// ** Database settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
/* Local 1 */
if ($_SERVER['HTTP_HOST']=="local.heartsonfire.com") {
define('DB_NAME', 'hof');
define('DB_USER', 'root');
define('DB_PASSWORD', '');
define('DB_HOST', 'localhost');
}
/* Local 2 */
else if ($_SERVER['HTTP_HOST']=="localhost") {
define('DB_NAME', 'hof');
define('DB_USER', 'root');
define('DB_PASSWORD', 'root');
define('DB_HOST', 'localhost');
}
/* Local 3 */
else if ($_SERVER['HTTP_HOST']=="localhost:8888") {
define('DB_NAME', 'hof');
define('DB_USER', 'root');
define('DB_PASSWORD', 'root');
define('DB_HOST', 'localhost');
}
/* Beta Server */
else if ($_SERVER['HTTP_HOST']=="staging.52beta.ca") {
define('DB_NAME', 'hof');
define('DB_USER', '52staging');
define('DB_PASSWORD', 'Vd]43LYs/J_bWnaz');
define('DB_HOST', 'localhost');
/* Live Server */
}
/*
else {
define('DB_NAME', 'hof');
define('DB_USER', 'hof');
define('DB_PASSWORD', '66Hz3l91iLEx');
define('DB_HOST', 'localhost');
}*/
else {
define('DB_NAME', 'hof-live');
define('DB_USER', '52staging');
define('DB_PASSWORD', 'Vd]43LYs/J_bWnaz');
define('DB_HOST', 'localhost');
}
/**#@+
* 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', 'z`V^H` AUX)2q1t]T*}Y5f2hUh:q{O0<Jde5v21X@J1_YcY}-94<-ttaPKSnNDx+');
define('SECURE_AUTH_KEY', '?XJm+gM`5jycf+~_HO*L>{iQ$1#htP(:;d/e_zp2V:LM>&2?5jy>o0S>{/,h4oU|');
define('LOGGED_IN_KEY', 'S1;e1(+~SOn): <YvY9JzhT-qebt[Nni%@TwxIp/-b:`9|YCu9]LV=B.I_V,W}L+');
define('NONCE_KEY', 'jcq(9:Vkk=6h7O5JOQ<ZZDL)0,^+_)WuWf^},|~$`odr>o5X?*(SYw/q#@YBN*>U');
define('AUTH_SALT', 'hsx`{DP9juJD$.!^hPhjhx1* &YRfa~! a*T9sb27lQsH^cL+C}JoebCVQ:bvC*+');
define('SECURE_AUTH_SALT', '6/hD|cC{L|9li=}Ufu$DRIYiTs6^>i4KU#<X=sY%Z-L mFY .Z|8WW|x+%q8J~Fd');
define('LOGGED_IN_SALT', '=!>_(Jj@-9.@]_rAHP}0ge<;FGAdqh*E?1tOL}B6;`QL@zAbQ k XkME2vfe%3+T');
define('NONCE_SALT', '(wQib~xwdN<(<d9_ZrCcXBhk%EpQCo&*?n|1dboIZAi{Yv3+YadrQ.U2G_tYH3o|');
/**#@-*/
/**
* 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 documentation.
*
* @link https://wordpress.org/documentation/article/debugging-in-wordpress/
*/
define( 'WP_DEBUG', false );
/* Add any custom values between this line and the "stop editing" line. */
/* That's all, stop editing! Happy publishing. */
/** Absolute path to the WordPress directory. */
if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', __DIR__ . '/' );
}
/** Sets up WordPress vars and included files. */
require_once ABSPATH . 'wp-settings.php';
/** Prevent offical WordPress theme downloads. */
define('CORE_UPGRADE_SKIP_NEW_BUNDLED', true);