← Back
Editing: wp-config.php
<?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 */ define('DB_NAME', 'lysenkos_kiis'); /** Database username */ define('DB_USER', 'lysenkos_user_data_base'); /** Database password */ define('DB_PASSWORD', '!*=bU2hl9;Hjfj7l'); /** 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', 'ypvfM{1%k[3jq-<.6%ac;=J_uduYJu=6^a&%yz$H=.BH-`Q6hI{CluFWvhiCLS>!'); define('SECURE_AUTH_KEY', 'iE} -WX5=07=<zDA|$c9.LIQTf90_8d{q8SkM[aHr f j34};JaO@=sUvw7>6:N-'); define('LOGGED_IN_KEY', '`pZ6uJlL93){d3:=WeFZA`zrwq-USRu+Rt=a7G(lp=UCe5>H?U`udz|bq{/X+Nv+'); define('NONCE_KEY', 'S-ti5)RmtEzmLS^*-i=e@Cq}+9A==C]#+_}n0#Xlg+z0`T9`4p6;E}|}2,O9-|bJ'); define('AUTH_SALT', '+iVs:NH#$F]c-)}2W SSe(c(:+UJy_b1^Xnaq?-dFSg(>%i@hljFJ@|r$tC4Y_Q&'); define('SECURE_AUTH_SALT', 'XiIeF1.Mc<URn{qae>`-hqCyNL *S>YaM#,+dVYL8.n+=uxW+>%wtgwV#$d{g$rb'); define('LOGGED_IN_SALT', 'bdsn3/p)N[wAO#q$?H 5Ln.wZ PL-Z^Fwx/hO-tT3{1!b8*`NyAu)3-iq`^`}8b{'); define('NONCE_SALT', 'pB_fDQF2prn-UfjorqOdAV[Fl[-J@ >OH;->7RS8]Q<$w)|2rJ#& }w(6)jXy/DD'); /**#@-*/ /** * 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); // Змініть на true define('WP_DEBUG_LOG', false); // Додайте - логування в wp-content/debug.log define('WP_DEBUG_DISPLAY', false); // Додайте - показувати помилки на екрані define('SCRIPT_DEBUG', false); // Додайте - використовувати не-мініфіковані скрипти define('DISABLE_WP_CRON', true); // Показувати всі помилки PHP error_reporting(E_ALL); ini_set('display_errors', 1); ini_set('display_startup_errors', 1); ini_set('log_errors', 1); define('FS_METHOD', 'direct'); // Додатково - показувати помилки бази даних @ini_set('log_errors', 'On'); /* 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';
Save File
Cancel