wecuro_blog/blog/wp-config.php

110 lines
3.5 KiB
PHP
Executable File

<?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
*
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
*
* @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 */
define( 'DB_NAME', 'wecuro_dev_blog' );
/** Database username */
define( 'DB_USER', 'wecuro' );
/** Database password */
define( 'DB_PASSWORD', '!$tXe2nzt7n' );
/** Database 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', '' );
define( 'FS_METHOD', 'direct' );
/**#@+
* 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', 'Fh>;`U1giyWad?H7`%!A?a(.(< jnW%]qa><mf=w6S0;AW*A +^?;`B2 Bov[8l:' );
define( 'SECURE_AUTH_KEY', '&;(kA0{i}j<*b_F0;F=8zjV-d*IU$#IaIuANncft#%7s@t{LBW|{HvnQnWV(.[K#' );
define( 'LOGGED_IN_KEY', 'lSNV)Tu-tf]HZvm+.i,zjAlE/gFliq>oSD2b+p7vKZ%az,i#_!|SfXcTqL@n#0d]' );
define( 'NONCE_KEY', '.B9wUEOB@@[x?5hoSNMz>tXE>y&afI)L7Z<6L%3IK}~OR0d5`Wq>HN`PQjPR;W|N' );
define( 'AUTH_SALT', '66 ~#@nE_B-USBM2Cn>mZZtyg&cTJu4+DJDa=jmQ7}Sv>[ZZq<W:b/RD-cbWUK4h' );
define( 'SECURE_AUTH_SALT', 'MjpP4_-gg4<s6m)-C7.j>{sl=Nkg;W5oecn1ln@e&Cu*1 yJgc@`90CGDsm+FnT|' );
define( 'LOGGED_IN_SALT', 'dr)I>atp=AT5a}hW7thN7K[mHF(B?ZK0me&{f$]*c+O@@Jfny/;0LxwE:4 o_D}G' );
define( 'NONCE_SALT', '#kS/dX_7Fr:0_J%^Z@HPB_+L])U]gQgI]qd@Qg1Vtm+.,DFXR4E(?ECz9t=l)bw9' );
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
/**#@-*/
/**
* 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';