Files
php_task_2/wp-config.php
2022-11-26 01:28:55 -05:00

93 lines
3.1 KiB
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:
*
* * MySQL settings
* * Secret keys
* * Database table prefix
* * ABSPATH
*
* @link https://wordpress.org/support/article/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', 'gametournament_manaknightdigital_6G8tewA9' );
/** 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', 'CRjkU7ytuB~y79X.u|pnN-)(G1o>Eeyowpk2}Nr@2[iCs.vL;Elb,p>&ykb.S_0l' );
define( 'SECURE_AUTH_KEY', '?Wn4gq;%39)v#N$UuihuCF*X`MYg!*eFL(;B9LgO ~@lTz$A]L8i,|w0l@9~LM`&' );
define( 'LOGGED_IN_KEY', 't3#424p2tMR.(A;jym_oAe9KOFtu<4m{RIAonIGdw2U7 k3&3ddc^A7{BBXhzPkY' );
define( 'NONCE_KEY', ')D>PD>NiB>C!u?P.%5{h.y9_h8*JoS<EHk:&=fcyA|zb+(5d|@QxYt[BmL$$mD=o' );
define( 'AUTH_SALT', ')<E!*[o8&)y5OyZ}ki{sF}WD)H-TOPjS,T#7di<I/UNy3[+4;hrd[Z8x=_RhN!ua' );
define( 'SECURE_AUTH_SALT', 'otHs*)yn.7Sqn!&2L8^-JY0(:nYJXa~:I!>0#W_Xkfb}u=}<7>1-tYo~QX~z2c 1' );
define( 'LOGGED_IN_SALT', 'xS&2]|A?RlQmm2f15#1ceg-2=MpbzYr-N)@{_C/[G]]UoY-u+)8}9zsC hW~l7KI' );
define( 'NONCE_SALT', ';xcxoM#wm=o?+ZY69oJ#x{^NfM0jjI&Bjs}:.X|uA)9a<r}pAe{n_0|22mxxgdDA' );
/**#@-*/
/**
* 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/support/article/debugging-in-wordpress/
*/
define( 'WP_DEBUG', false );
define( 'WP_DEBUG_LOG', true);
define( 'DISABLE_WP_CRON', true);
/* 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';