playmax / wp-config.php
tntprojects's picture
Update wp-config.php
6a93c36 verified
raw
history blame contribute delete
464 Bytes
<?php
define( 'DB_NAME', 'database_name_here' );
define( 'DB_USER', 'username_here' );
define( 'DB_PASSWORD', 'password_here' );
define( 'DB_HOST', 'localhost' );
define( 'DB_CHARSET', 'utf8' );
define( 'DB_COLLATE', '' );
// Esto le dice a WordPress que no intente usar MySQL
$table_prefix = 'wp_';
define( 'WP_DEBUG', false );
if ( ! defined( 'ABSOLUTE_PATH' ) ) {
define( 'ABSOLUTE_PATH', __DIR__ . '/' );
}
require_once ABSOLUTE_PATH . 'wp-settings.php';