<?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
*/
@ini_set('upload_max_size' , '256M' );
define( 'FS_METHOD', 'direct' );
// ** Database settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'db_portal' );
/** Database username */
define( 'DB_USER', 'root' );
/** Database password */
define( 'DB_PASSWORD', 'DmiZfvkznsll4NMF' );
/** 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', '' );
/**#@+
* 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', '6a]L$kkG:0lm:zGGn}p%.`Ce(}vA<)S-4]{DUZ{$swu$A+J>;xJF{;u-zE<nnl8D' );
define( 'SECURE_AUTH_KEY', '!^3WjvcawAjRUw&Yt|cSjzm^g.;f92@1E[8pE)ONO-WGdXZf=WRGk+26d=pjZ2pH' );
define( 'LOGGED_IN_KEY', 'o/c{IURCFOG6Ly[XOCYvig70-L)dr%{{$ALJ3>IPWtqWchYas?Tg(WmTb1`;$^tA' );
define( 'NONCE_KEY', 'WwgKXrj%h|3T(C?8en>HFCfMcnt62Nf7sQy+D5i^.i8d@ o{]>2g*2A$l+O2Df-h' );
define( 'AUTH_SALT', 'WDX|dzQu&JXX$Ho)i?&Gy=kGW*C9YY4:[Ne+l1)[Gs/R.K{y%6~/+TTGETp`SPhM' );
define( 'SECURE_AUTH_SALT', '$Q:>U.k~Yx[{NQ!XWo2Q2C|h-i:ddkZ4(<;&E4=8dq%ZLjKM7l)/P_AO-EdUCnzs' );
define( 'LOGGED_IN_SALT', '/%Uqg{pOl,cS,8 i>On)`M?4W GTD6>+//^^c-Mz&!N86^np.{VHz6P3pTh(R)u<' );
define( 'NONCE_SALT', 'hrJNvypdd}Z|xgPut~_^`:cp_d@D}hc?lO9*G^b]&{ya}&:ct]S^)d)(no/Dk*F?' );
/**#@-*/
/**
* 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 = 'tbl_';
/**
* 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', true );
/* Add any custom values between this line and the "stop editing" line. */
/** 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';