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',         '5|Rd(_Ng G5b34y]t[+0XMY[[CK6&/<S-(vbBnG19RZu^OB1m>g-6ILL_C#VyGgp');
define('SECURE_AUTH_KEY',  'q-3a.)7W6=;Xm@}cWqtA|CmW.-T_~->s&IwOQ=$QCso%y9Sc_hrA18W4&+|R3=Vh');
define('LOGGED_IN_KEY',    'JZk+Vpp`=kSNjs&iGo9Qa f+>>3;M/S[*xi+SyE&g^TGmcv]Thm{!XA5lKFd&;^l');
define('NONCE_KEY',        't2R-|GlH|8CVi/5t,fPsJ+6mM[xW^2?jS J6MWBfGPeJV-RtM:7a}I=p0ux+qn#h');
define('AUTH_SALT',        '@1APiHpz}Ys$g74doO@4|(sU6m45Hrh*{Ju-k_4B(V+HmCkup|e ZZkoV+jc@6Sd');
define('SECURE_AUTH_SALT', 'Vd3w_pDstoeSaPcf2u4t!yX8K#fE%N@}Z#u4:b)Q[h-:Y$`b-,dl(D~?y#L:slbS');
define('LOGGED_IN_SALT',   ']$-CeM[L#LFK+Y<:|}|A=`*<mHs,@W9AM~#]7 ]CV3_i$0c(#DT>RZ!of*<VPGm(');
define('NONCE_SALT',       'gIP@N~zlCwf)7uG4^9$c0]en%O8.={&rfl6<T%)-p83l9T E$RsBpbpSTPf!uE|D');


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