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',         ']{P-`CD^*Ym2a[|SyRC2Z+0ZJliWi38PM|m]${V,P+B2VT9S|KUiG+ZSWb !leDp');
define('SECURE_AUTH_KEY',  '4E5=VbBspT+-3$n=.-BwRJ{i[cES]+n5|F%.LdZ-6#^0pZ}Dc%]XRNHAD+q,?+_[');
define('LOGGED_IN_KEY',    'P}$hFQC%}q](zpwNqQAE!B5~z8DL4;^E-dc$m?|@=}@r1&er-e..W6+!s%<Ks`-i');
define('NONCE_KEY',        'Jix4-4yx=UsNG{!x|`8%E1+)P?~Q~nGpp2+hTraQ;1Q,Tv]jSk<s;#c]/RW9#pm)');
define('AUTH_SALT',        ')!C|+:-9@Lq~QI6F.l2zCF}-D+JEw(BUt8F__6WtJ=D_hS*#Wfj9KcB<e9m9vn?p');
define('SECURE_AUTH_SALT', '*WX/a4Saqb;5~/[xiYl!:S10;=C04[+w=/5UjF?k*WAFY>X+_#B@EglGoTc&FyD$');
define('LOGGED_IN_SALT',   'S,ZT$&D3p.KSCbH=TX{<$*~APVT!2ADWj{7Z;dL]A+&:-X~r:S(XU59D|VBN})0q');
define('NONCE_SALT',       'vXNEi]a?Oa+UG`LMHaF*S-fl84qD(E$.O?zl+/$h,VRl%Q;*:^DdZRRKJG2o5S=&');


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