File: /home/mciraet/www/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 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', 'mciraetjob2024' );
define('COOKIE_DOMAIN', '.job-otb.be'); // Domaine principal, avec un point devant
define('COOKIEPATH', '/');
define('SITECOOKIEPATH', '/');
/** Database username */
define( 'DB_USER', 'mciraetjob2024' );
/** Database password */
define( 'DB_PASSWORD', '5rLS8NhNDR5W' );
/** Database hostname */
define( 'DB_HOST', 'mciraetjob2024.mysql.db' );
/** Database charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8mb4' );
/**Increase memory limit*/
define( 'WP_MEMORY_LIMIT', '256M' );
/** The database collate type. Don't change this if in doubt. */
define( 'DB_COLLATE', '' );
define('DISABLE_WP_CRON', false);
/**#@+
* 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', 'i$tMCslLh`+#3c2$!m06pJ,Z6Dah!4?Z)%;;@uKRR%4vy;)~~m0{E`_7grnbcZ2I' );
define( 'SECURE_AUTH_KEY', '8H]=s.yV%^5c(|_l1_P+Rt2Y8*lUtX@BsO^CGO+!;PlYqf%:<|ed/K22R%NMVam6' );
define( 'LOGGED_IN_KEY', '1QCm9B*?-?Y{H+uqkbw97P4IZp?_9I=P<fa|A7jaT}|e;nns}q_FSYjLv]1.^dS_' );
define( 'NONCE_KEY', 'Bu~X{<FK,hCNHL^&Lu9V8bUsuy*Aje.S#>MYB JFj|uX,Prj~QQTpdTXF#af)=4z' );
define( 'AUTH_SALT', '9rk]`VsuET6~vSKD7?VFY;%W,tg$M+3v]PiL:xe}xox}dtk3m@c+ @Na{4)%m<-u' );
define( 'SECURE_AUTH_SALT', 'D YZ6F%){B[0+U^y{YXxDD&6>ZUs|C`$j/!(QIr]%|_DX&PFOOQs:A+Clk$Yq}2>' );
define( 'LOGGED_IN_SALT', ';3B;4Pr?%t2S+dsb_}v6_VUX&[L{ppJL+;Cm3Y$L*j-7}SpGf|}.P:qGSqIOC! O' );
define( 'NONCE_SALT', '8<`mcfsn*Ww3$!`)Jpty!/($:0-qy7-6A?CrLy-X7W gxUFUT63OV]J a02s)Y@%' );
/**#@-*/
/**
* 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://wordpress.org/documentation/article/debugging-in-wordpress/
*/
define('WP_DEBUG', false);
define('WP_DEBUG_LOG', false);
define('WP_DEBUG_DISPLAY', false);
set_time_limit(300);
/* Add any custom values between this line and the "stop editing" line. */
/** 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';
/*SameSite*/
add_filter('secure_auth_cookie', function ($cookie) {
return $cookie . '; SameSite=None';
});
add_filter('logged_in_cookie', function ($cookie) {
return $cookie . '; SameSite=None';
});
/* That's all, stop editing! Happy publishing. */