Edit file File name : wp-config.php Content :<?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 * * Localized language * * 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', 'guideinstitutsbe_wp_p1rir'); /** Database username */ define('DB_USER', 'guideinstitutsbe_wp_8h0i8'); /** Database password */ define('DB_PASSWORD', '01L*H^$y?$4Tc7tl'); /** Database hostname */ define('DB_HOST', 'localhost:3306'); /** 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', 'xm_~KF;fJnI_7H(@VE)edQJzyIJpt036I04(gw*~01qtX2Y-HN9Ol7a_8W0:YV(0'); define('SECURE_AUTH_KEY', '&8VU:0WNci38Kx!-b~*89#8s:[65~s7z9iKiN;37TSuJ9NU7YT#8aL05Eweuawyb'); define('LOGGED_IN_KEY', '!v6B6IfwN:H|C6a3#1ziDC4cx6)%dI5rw%/xdA1N4bWtr)l@D#U4vwBs5F)]yd!H'); define('NONCE_KEY', 'z4:O4l5TTD/7!n-3R%ZG&&1kpE0Nw)7]3M2qfR:T!|yR4jH;zqjV32q8Elxo3-49'); define('AUTH_SALT', '0R214C(I@519K|5+&+~~E:w43#%@66@Y8DoAI65980/k8~4|O16!PNn%AV000tM2'); define('SECURE_AUTH_SALT', 'h#GzV3a6b39R!W8lZ[_1[FLw2xnPiU9Z%&1769u&Kf+sDsaGLfpUU%5(061_y)Y1'); define('LOGGED_IN_SALT', 'g11FC/8@Y([9(0B8V3Ua1_1u2CS9abAa_07+1zb+lHK])B4RuQcdw!95*Yy5]*u~'); define('NONCE_SALT', 'f(daO+g[ruP)~RIF%5BqS26D9KacMZ&gg[[2g4b(p6!#@4J8w6jm28#V0M_0m6T!'); /**#@-*/ /** * 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 = 'N6pD2RbJl_'; /* Add any custom values between this line and the "stop editing" line. */ define('WP_ALLOW_MULTISITE', true); /** * 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/ */ if ( ! defined( 'WP_DEBUG' ) ) { define( 'WP_DEBUG', false ); } define( 'WP_DEBUG_DISPLAY', false ); define( 'WP_CACHE_KEY_SALT', '680f2b1778b28bd747272ab8101da69b' ); /* 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