Enable Multisite

Home » Snippets » Enable Multisite
0

Created with:

WP Config Generator

Visibility: 

public

Creator: WPTurbo Team

Customize with WPTurbo AI
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_user' );
/** 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_';


/**#@+
* 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',         ' H&^%h2M!IOzB1CS5K,S8ZbQ-)~/F!bbWN2~5I&~Y1oi^IWPGnqi=<UEfGlBu3^)');
define('SECURE_AUTH_KEY',  'wW=)j!T8!6Ww,2D}5=YF&$V .`*JY|=KiE-<U--(~]|5=u&VY,YU~#(Ebd-R?>P#');
define('LOGGED_IN_KEY',    'o-y?L89<t|C(j8kJ+:3Sf%#dBqP$&FoARTTW;%!go3dJu2X$-Ltm16hj^|^|a+14');
define('NONCE_KEY',        'U8A1]^{YL8J6.`BgSJk<u!-M}T3*=%m{!MT?Jfs(.|Iq$hNf=LiNNCS(~|N~--SF');
define('AUTH_SALT',        'hLgT>%pB=MUKm=ttWF-t``=S:xqrFb{2xK=/^=LEab`lgqDI}x:wE,e;psc<-1gJ');
define('SECURE_AUTH_SALT', '@BKbk^+=/}6Ir{Lxf=S67hR!BLS7/(42jb:eFg}(}DZn4.+e-TF?&pVD9s*%}P^N');
define('LOGGED_IN_SALT',   '.*.EuJW1t8.4r|]E0I{hm{J`W`1j;d!XhWt]Zl5NL{i-u-bPE0}t*__T#t-:ow6Z');
define('NONCE_SALT',       '6aQyDcv!{DA6z)o;[8itB+jBMdN%A.]z@:0K|T 7f(?aAevQI3Hs?$-W5@D~om<|');


/* Multisite Settings */
define( 'WP_ALLOW_MULTISITE', TRUE );


/* 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');

			

Register an account to save your snippets or go Pro to get more features.