Wp Config.php Direct
/** Database Charset to use */ define( 'DB_CHARSET', 'utf8mb4' );
/** Sets up WordPress vars and included files. */ require_once( ABSPATH . 'wp-settings.php' ); wp config.php
/** * For developers: WordPress debugging mode * * Change this to true to enable display of notices during development. * It is strongly recommended that plugin and theme developers use WP_DEBUG * in their development environments. * * @link https://codex.wordpress.org/Debugging_in_WordPress */ define( 'WP_DEBUG', false ); /** Database Charset to use */ define( 'DB_CHARSET',
<?php /** * The base configuration file for WordPress * * @package WordPress */ * It is strongly recommended that plugin and
/**#@+ * 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} */ define( 'AUTH_KEY', 'your-auth-key' ); define( 'SECURE_AUTH_KEY', 'your-secure-auth-key' ); define( 'LOGGED_IN_KEY', 'your-logged-in-key' ); define( 'AUTH_SALT', 'your-auth-salt' ); define( 'SECURE_AUTH_SALT', 'your-secure-auth-salt' ); define( 'LOGGED_IN_SALT', 'your-logged-in-salt' ); define( 'HASH_SALT', 'your-hash-salt' );
/* That's all, stop editing! Happy blogging. */
Here's an example of a default wp-config.php file: