Spaces:
Sleeping
Sleeping
| 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'; | |