Spaces:
Sleeping
Sleeping
File size: 464 Bytes
30dc852 6a93c36 30dc852 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <?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';
|