Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

wp-config

<?php
/**
 * Custom WordPress configurations on "wp-config.php" file.
 *
 * This file has the following configurations: MySQL settings, Table Prefix, Secret Keys, WordPress Language, ABSPATH and more.
 * For more information visit {@link https://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php} Codex page.
 * Created using {@link http://generatewp.com/wp-config/ wp-config.php File Generator} on GenerateWP.com.
 *
 * @package WordPress
 * @generator GenerateWP.com
 */


/* MySQL settings */
define( 'DB_NAME',     'local' );
define( 'DB_USER',     'root' );
define( 'DB_PASSWORD', 'root' );
define( 'DB_HOST',     'localhost' );
define( 'DB_CHARSET',  'utf8' );


/* MySQL database table prefix. */
$table_prefix = 'phi_';
define( 'CUSTOM_USER_TABLE',      $table_prefix . 'tabla_usuarios' );
define( 'CUSTOM_USER_META_TABLE', $table_prefix . 'table_meta_usuarios' );


/* Authentication Unique Keys and Salts. */
define('AUTH_KEY',         'e=~B-,8hYIR8ms]Nfp.CgwB}|nSV!~]SYm {CX~o<');
define('SECURE_AUTH_KEY',  'UIDd#Y_[WL#L9n@o-1.!xqNSa1v<ztpZ|XLl[-U_iF=m&d]Kr=o{xe.O%oG<IPk<');
define('LOGGED_IN_KEY',    '~-w{R4tQ{FHiFMJgxnccJ7^0(Q%hYe6M[JZ^)EivAZ{0gBn7:8SyHdb-x~i3Rsaj');
define('NONCE_KEY',        '+aur@,L3d.1cn20=_|b<i 4`m,FCJ~_a4+mfbkFiMh/[tGKI-');
define('LOGGED_IN_SALT',   'VG@$,5p9R_Guh~#an$AAW*a]wo.@yyrA#q,NIk1aBQtd4BEhX-%&10J_h<,H4E-T');
define('NONCE_SALT',       '@180*.#aV,;8Mgn^-LXW6^$:-UmZ~ DDa?:k922w+I}bArB6{');


/* Custom WordPress URL. */
define( 'WP_SITEURL',     'http://new-web.local' );
define( 'WP_HOME',        'http://new-web.local' );
define( 'WP_CONTENT_URL', 'http://new-web.local/contenido' );
define( 'UPLOADS',        'http://new-web.local/carga-archivos' );
define( 'WP_PLUGIN_URL',  'http://new-web.local/funcionalidades' );
define( 'COOKIE_DOMAIN',  'http://cookies.new-web.local' );


/* Specify maximum number of Revisions. */
define( 'WP_POST_REVISIONS', '6' );


/* Multisite. */
define( 'WP_ALLOW_MULTISITE', true );


/* WordPress debug mode for developers. */
define( 'WP_DEBUG',         true );
define( 'WP_DEBUG_LOG',     true );
define( 'WP_DEBUG_DISPLAY', true );
define( 'SCRIPT_DEBUG',     true );
define( 'SAVEQUERIES',      false );


/* PHP Memory */
define( 'WP_MEMORY_LIMIT', '2048' );
define( 'WP_MAX_MEMORY_LIMIT', '4096' );


/* WordPress Cache */
define( 'WP_CACHE', false );


/* Compression */
define( 'COMPRESS_CSS',        false );
define( 'COMPRESS_SCRIPTS',    false );
define( 'CONCATENATE_SCRIPTS', false );
define( 'ENFORCE_GZIP',        false );


/* CRON */
define( 'DISABLE_WP_CRON',      'true' );
define( 'ALTERNATE_WP_CRON',    'true' );
define( 'WP_CRON_LOCK_TIMEOUT', 10 );


/* Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
	define('ABSPATH', dirname(__FILE__) . '/');

/* Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');