← Back
Editing: wp-config.php
<?php define( 'WP_CACHE', false ); // Added by WP Rocket /** * 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/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', 'madcameljlpulse' ); /** Database username */ define( 'DB_USER', 'madcameljlpulse' ); /** Database password */ define( 'DB_PASSWORD', 'I6JLw1PS4ZN0I4dx02XoPe0v' ); /** Database hostname */ define( 'DB_HOST', 'madcameljlpulse.mysql.db' ); /** 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', 'C7S7VaOG/o~)pEnLAR:bY5.G{-1Z_7,O5-/V{g+bTLimusi4|7)%-=3M/@p>_wXm' ); define( 'SECURE_AUTH_KEY', '*Q<Kyiggv0`s 1?a/m+7a9#0$=qC>k_Xm$c.Auq3cF#0WD^?2Vc_InlwbUl}R_dV' ); define( 'LOGGED_IN_KEY', '3r%}&l/tF%IK>#u*y:xy#}Ct|N$NY|4Y<%%g,?&1u.icO,JEMC{KOd0*K5VR^QA!' ); define( 'NONCE_KEY', '_RqGU3e{C3wt.3R<v#ZR9Zx;|i/S6Po!su84c#tEF9}K0`[i)%N}{;.#<Ln(a}GL' ); define( 'AUTH_SALT', 'hA?~+._It<#5>sd,vBEn2d3Y]_[UjhC&*2R6nEh/egKnf]]&pYrdk}a_BU6YDH`?' ); define( 'SECURE_AUTH_SALT', '9=ieDALo!<X=v*R-lDPUe}_STB9%@f1m_}l{*dlz5&lj<6x|.sb<m}r/YU26`,6K' ); define( 'LOGGED_IN_SALT', 'vn0<`soFs@Zj?ZIXynqG}NFuK]EH/pJyYt@;.`D_x#g`e)6(NK+)T6X qSm2Cs^S' ); define( 'NONCE_SALT', 'E|CA(l17N .I]tXR*RjZf,12IL+tpt`b1WxP_(&i^t[a!JH`;iXa&VB.GT16tm/R' ); define('ALLOW_UNFILTERED_UPLOADS', 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 = 'mad_'; /** * 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 ); define('WP_DEBUG_LOG', false); define('WP_DEBUG_DISPLAY', false); define('WP_MEMORY_LIMIT', '512M'); define("OTGS_DISABLE_AUTO_UPDATES", true); $_SERVER['HTTPS'] = '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