Enable Multisite

WPTurbo » 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',         'cVozt &6}lJjHG]dh@CtXH]5[oC{)Kjt%(j5*r4ISSxIFL-4)Hi4DI$wN+66@$>a');
define('SECURE_AUTH_KEY',  '{jQPlWwGvr qr4@M,R6}#+]RMA;#KjgRUAt&SwZs4/7/%%}=wvqkd*b)7Rp1:zwT');
define('LOGGED_IN_KEY',    'el9zSrq=AHSF!Y {o!2@AXC!uuI`;Y:M6X2n 9Jrw$PB8ybMhUKR,P ECvkQxe?H');
define('NONCE_KEY',        'YaKcK|0Yzt(J@RTv||aKB]-LUUjl6|1a|MO$a[*eb[3W!<fKwL(+n<0>JU8LSbP}');
define('AUTH_SALT',        'P[-jE<IJ#q8:7qn~|*=T6$5D/H&lZGmB},tzb3VG$)0eFL8nm9mk!ZF+!9*hq#|8');
define('SECURE_AUTH_SALT', '1caWSET5+^utD72|Sv}^m&.{|7ml|HG~d5X 1.* pI++ n>>Dtr&0OZyM^|H{usX');
define('LOGGED_IN_SALT',   'mM00f,zkMZqhv^>F%pBeLB}vw*6@J*tC|3I4;6cV+YxEI{NsGBq>rTDOrQu!0c|r');
define('NONCE_SALT',       'hT`rjHxLAl6cdmelfVfYGzyM ,LJE9G[EfbiIhdY0%X%GCq]=J]nI|}h]+Nl5?ww');


/* 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.