JezK
Edit File: wp-config.php
<?php define( 'WP_CACHE', true ); if (!defined("RSSSL_HEADERS_ACTIVE") && file_exists( ABSPATH . "wp-content/advanced-headers.php")) { require_once ABSPATH . "wp-content/advanced-headers.php"; } //Begin Really Simple Security key define('RSSSL_KEY', 'WirV9esKZvhJro05cvuIqHPW1aSADXkoimBttUDY9hzhZNzXkGgNn0cTl6LOd8U3'); //END Really Simple Security key /** * 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/documentation/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', 'nabfins' ); /** Database username */ define( 'DB_USER', 'nabfins' ); /** Database password */ define( 'DB_PASSWORD', 'Pq#rt&8393krisP' ); /** 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', '(6jJU1(*COB<^Qh+pi]hT{ygO@<zOHyG:.&&!ftR:0dmho<1<Uh/Z+SX~GSmx.}W' ); define( 'SECURE_AUTH_KEY', ':g[=9+OC92@D{Q!X6=zOtS&>8,8vQr]ej95~N{w&osyjpDio[A<?_U4ZjZ198t~A' ); define( 'LOGGED_IN_KEY', '.>J<WLbd{0n+qc4UI]Xn7TiR_R>EOo$*Jt`wzu.D7+ py)Bl@.1`=?Ffc}v#pL,|' ); define( 'NONCE_KEY', '$jFIq-=9$Y-Rj$S w,d7s;duIr^t[)67SUKug}%^2qfARey*[1iZl@pBwz;Z|miZ' ); define( 'AUTH_SALT', 'Rz+t|U`KL{`V;V?=)NEGBDJi)M{?~gg%..W)M@<yGf9O`@.$*^n3Cq sB6Pj8FxK' ); define( 'SECURE_AUTH_SALT', 'tH=EIoqkV?0c41~$tFuuV~VWdhOmz&n3p$vj|h=&Q]c9j%yb{v]7<%D362<}j}5=' ); define( 'LOGGED_IN_SALT', '}F.@`R,7>ygKl6CJP<<M,E$(Y#{4db,;],%4)n>Wvi;W,{Bjv[.yhsvTFxcf&#:!' ); define( 'NONCE_SALT', 'HAOkby1b~ e.6 A,{5[+o47Rb&VS}d6&:.ZYp|*foHj]c^Xi4e[1lHzLE}{D,-(A' ); /**#@-*/ /** * 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 = 'nbf_'; /** * 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/documentation/article/debugging-in-wordpress/ */ define('WP_DEBUG', false); // Disable WordPress debug mode define('WP_DEBUG_LOG', false); // Don't log errors to debug.log define('WP_DEBUG_DISPLAY', false); // Don't display errors on the front end @ini_set('display_errors', 0); // Prevent PHP from displaying errors define('WP_ALLOW_REPAIR', true); define('FS_METHOD', 'direct'); //Begin Really Simple SSL Server variable fix $_SERVER["HTTPS"] = "on"; //END Really Simple SSL /* Add any custom values between this line and the "stop editing" line. */ // Secure session configuration // ini_set('session.cookie_secure', '1'); // Only over HTTPS // ini_set('session.cookie_httponly', '1'); // JS can't access cookie // ini_set('session.cookie_samesite', 'Strict'); // Prevent CSRF // // Start session early if not already started // if (session_status() === PHP_SESSION_NONE) { // session_start(); // } /* 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';