<?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/support/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', 'myairtrip' );

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

/** Database password */
define( 'DB_PASSWORD', 'Password123#@!' );

/** 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',         'wF15j,?tm6x6+G=]a]mV(&.h!BQ|:V*#Lp:XwE]p.T,$qA1@ABu|U=dd]{@LCI1P' );
define( 'SECURE_AUTH_KEY',  'o+r<%7h+6GJ>ARwNa365Krk:!yLj+hA`x+CV^>{Tka(RdSOGdgCT^Og.[yl~?=T_' );
define( 'LOGGED_IN_KEY',    'X):oVUyCX7?ZonmI#r&YXZ70/v5Kk:ub:gn2$.KTV.3>4701:??6$u]iD$]a=+Is' );
define( 'NONCE_KEY',        '>z{^Ud[IkXYs|LU1;<N#,wMS0V=[{7vHSu=ZG0$&sL_0lux=yL-@E/5~Mk+N@&(K' );
define( 'AUTH_SALT',        '9brMA8(pgYK8A6m&!8G##H`S.!G:;aG>,+{9Y:<AoCY/]iT/`>FXBYa3eEPA ENF' );
define( 'SECURE_AUTH_SALT', 'Cb?.g:7-T-*3PXPqLV#r~VX)5>.{S/X+y_XU$qi|{WNzzYhv~c4`|x1m@%/#e%Wo' );
define( 'LOGGED_IN_SALT',   'qy.OxY3`~)5l#!FJ(x?D/P0YP+py$:F2l{9oM0(&b6o#@QXJnxBH9,fV=2P- I!y' );
define( 'NONCE_SALT',       'w)C]cPU1vo{A%xa,Z0qm9A>=MHTNeA)N+L:9#}*6I:~Z*=L/;/`z~JKALRNYr5nU' );

/**#@-*/

/**
 * 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', true );

/* 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';


@ini_set('max_execution_time', 1000);
@ini_set('memory_limit', '1024M');
@ini_set('post_max_size', '500M');
@ini_set('upload_max_filesize', '500M');
@ini_set('max_input_vars', 10000);
@ini_set('max_allowed_packet', '256M');
define('FS_METHOD','direct');


/*DISABLE FILE EDITING */
define('DISALLOW_FILE_EDIT', false);
