Change WordPress Table Prefix

WPTurbo » Snippets » Change WordPress Table Prefix
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_username' );
/** 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 = 'acme_company_';


/**#@+
* 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',         ':IOmqLIr/.8=ZZ^TIg{a;VV 3AU=n}#FUb!TUP-Y5JY:,@r^Y]Sn5p4!FAkPr]Xe');
define('SECURE_AUTH_KEY',  '1>o-2rBg]||bu#B1$2m!K!iSX{S@BF{z%{|iIM-B-o&Kk|T1_CJw#9<B)G!ukwlU');
define('LOGGED_IN_KEY',    '3)PQ:QrWI_@I5H6_j1Ku!-9]]X8Z:_6 ,F[u%aI;c-JcY]DMb_q2;J|tj(~MJ&;g');
define('NONCE_KEY',        '&|/bAVw)-nk$-@8Y*][_|+^Z,)3GvV`gmm1<C:ZAr$a2BLOJE@9}c=_g-TKRa4+q');
define('AUTH_SALT',        'zSZ?$f+I-H/J>Qz.3>+ >/WMk|+,EQ[]Im:a{>@/.R|$-F+Rd|^+T$abr@3-rPnC');
define('SECURE_AUTH_SALT', 'Rl7u$QY~rV1B-`1E{~qVLYo#Gg`K*.+0EEZy *&uPF$5mte|K?bf<F_sSQOfv)].');
define('LOGGED_IN_SALT',   'N,A8!qn-vcQ1+-Je EvGV5B%?Sg-|:f?,1` Ci:G$b,T|N)y}cTX}Ru%Wn5zt[0J');
define('NONCE_SALT',       'uD+meD)PhP3hw`y^i<WIze#3|e3AY4Z|Ry^I??N81V<4e^&#2-(K5x@S$|,M[xRm');


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