0
X
Add Snippet To Project
New Project
Add To Existing Project
/**
* 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:
*
* * MySQL settings
* * Secret keys
* * Database table prefix
* * ABSPATH
*
* @link https://wordpress.org/support/article/editing-wp-config-php/
*
* @package WordPress
*/
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'wordpress' );
/** MySQL database username */
define( 'DB_USER', 'db_username' );
/** MySQL database password */
define( 'DB_PASSWORD', 'db_password' );
/** MySQL hostname */
define( 'DB_HOST', 'localhost' );
/** The Database Charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );
/* Prefix For All Database Tables */
/**
* 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_';
/* Autosave Interval */
/* Autosave Interval */
define( 'AUTOSAVE_INTERVAL', 600 );
/* Disable Revisions */
define( 'WP_POST_REVISIONS', 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', 'Pcu(ep5O^(0heM<I_0!z`jn+}`V.DzkJ,rOFK6sZ^[S2Nsl]/2P@9zV+&,4GMf]e');
define('SECURE_AUTH_KEY', 'y8C]E4Tm0`u$f$E^?iv&pjw_!:h_C:+MD 3q#IKKmK#!|9+M5Bp_|Jdu9b0CAy 1');
define('LOGGED_IN_KEY', 'Tn8T&m3Xr|){@hBZR~BJ@}9)*J/Q-eEMm-TcL`9g|FP+Hh*}`%*S1c/u&o?bNi@=');
define('NONCE_KEY', 'Dy:v.fDC/_^<:MGjw-~~4rQM-I`BrV[]S2(g0aR6|R_rCfF&0WgGRv=q-IyNTSy9');
define('AUTH_SALT', 'Zco8`~< >0`tOe[e*amN|qT?17y+ECu92Gev=XymhKRHE]uj*!I(sk,(_D~Cb6`T');
define('SECURE_AUTH_SALT', '=ys-VLu)O^,Eb9nUU#S$VnJh>*A 2FH.F^3]7B?#0194oghI>8cWWy) 7aT|DM_=');
define('LOGGED_IN_SALT', '}_z8svQt+u+Gj[rd1]&r&-[37y/A+I-T@#W9WMeN.`Z.-5oE_)6.v?,3uR9Wk N=');
define('NONCE_SALT', 'Rst)f.J3^}y9M(C55-[H{|A:-:7jsa1;r.pKw7%%oiP.-q5AReG<Dau5Eye.|%Ia');
/* CRON Settings */
define( 'DISABLE_WP_CRON', TRUE );
define( 'WP_CRON_LOCK_TIMEOUT', 10 );
/* Memory Settings */
define( 'WP_MEMORY_LIMIT', '20M' );
define( 'WP_MAX_MEMORY_LIMIT', '30M' );
/* AUTOMATIC CORE UPDATES */
/* DISABLE ALL CORE UPDATES */
define( 'WP_AUTO_UPDATE_CORE', FALSE );
/* 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');
