<?php


// Set custom log location
//ini_set('error_log', dirname(__FILE__) . '/wp-content/php-errors.log');

//error_reporting(E_ALL);
//ini_set('display_errors', 1);
//ini_set('display_startup_errors', 1);

define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);


define('DISABLE_WP_CRON', true);
define('FS_METHOD', 'direct');
define('WP_REDIS_PASSWORD', 'Lps@2024');

/**
 * The base configuration for WordPress
 *
 * The wp-config.php creation script uses this file during the installation.
 * You don't have to use the website, 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://developer.wordpress.org/advanced-administration/wordpress/wp-config/
 *
 * @package WordPress
 */

// ** Database settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', '' );

/** Database username */
define( 'DB_USER', '' );

/** Database password */
define( 'DB_PASSWORD', '' );

/** Database hostname */
define( 'DB_HOST', '' );

/** 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',         '^<-4$AOn%^?.V{0_@?7}$pGft=,<o*K{tu]CY6GMjoD-*`sM*B3vj:bL-]B$NM:#' );
define( 'SECURE_AUTH_KEY',  'MT9c,,j}[GJ0B @&whvw[A;9p)M3+?MAAXI^uptCJ!w pCS- p~71s|KaYW9_L[=' );
define( 'LOGGED_IN_KEY',    ' ek_j|{}brl&F0ElE?T!}~0=fIv{p^L8[`UA-6hPSYes(u}gRMipkTA[0v@F+B^b' );
define( 'NONCE_KEY',        'CXW^#QpXL_-m[V8-Rwij^:RAyg2)YCly7E3@nM/@nA#.XGQpT fbxl5HPx]>J_}P' );
define( 'AUTH_SALT',        'Ipot96e3P&IPOa4Bu4;cue0qa!mq)O]0$X1>2_wn3| i+3GRm&h5yq7Yf4L$]uQc' );
define( 'SECURE_AUTH_SALT', 'O#v&F.R<xH;-T^>X@DUMHkZP{DS<AHHX]cl{D8v*&01/o}G266`%*)gdZ65ezp]>' );
define( 'LOGGED_IN_SALT',   'e!V;jQ0YazOxQU$oN=v$ytf.{A(@hucqCjg}Dosaxu:3MCm2D@[BpqRvj~6K9_/n' );
define( 'NONCE_SALT',       '-S@Cr;dM]uby 0FSWwdV;3[v0y%rV$Y^:g,Qa~$`:9qtY}6`Xx3v2%]R1>:M<9.z' );

/**#@-*/

/**
 * 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!
 *
 * At the installation time, database tables are created with the specified prefix.
 * Changing this value after WordPress is installed will make your site think
 * it has not been installed.
 *
 * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#table-prefix
 */
$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://developer.wordpress.org/advanced-administration/debug/debug-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';

