Change WordPress Table Prefix

Home » 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',         '8m>=W=6i=Och-[SR/6FY(j|-x-MmM]|E@ eAO7F-A5!;K(@25+3VdoZRkZ?%,:97');
define('SECURE_AUTH_KEY',  '2oAQj%#foM^uy<|h)T6&gACa-o!1MVw/6I{=gn~}6IvRV|iLRkZ-TaT9 VDTSOr{');
define('LOGGED_IN_KEY',    '(B1[`uB-Z`3Z!%7JM%4Y}Q/;FkHm2:Kpll6xeJ6~j1g~Fa827(Dw8([V+yw7,j~g');
define('NONCE_KEY',        '-ZM~S,+D}Y-7U]~-Ur8+jUV=JL$Q?<JE.c<9HtzI` O@w7?D94(~|8sx1OEfDy|&');
define('AUTH_SALT',        '->`,1nZLRpc`;i>@8Xz**DpA]Aq2QFl3(-Y<--bxJ|r3qg/65ZN+e0sUfV[F5p]b');
define('SECURE_AUTH_SALT', 'Brc&(t5#6YW*O8)Q8rk[|?b-WrA7bj:0I]ga~Z^Hr,UkP*ka&2G;qO4(n|hU$Jpm');
define('LOGGED_IN_SALT',   'C,4+et-;:Dv7b3u*?Bl$I]3nZK`~k,1;[B8N(>?,KDAP#%UxG|RvB8qQ+K.Q,;)J');
define('NONCE_SALT',       '+L$y9W]&zlzH4oB4]w}VGQ?]SH/` U3Alg 8v|L}iqfgT+SzNItH jX?O#/E%EZm');


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