como salen contraseñas y tal pego esto:
Código PHP:
/** Codificación de caracteres para la base de datos. */
define('DB_CHARSET', 'utf8');
/** Cotejamiento de la base de datos. No lo modifiques si tienes dudas. */
define('DB_COLLATE', '');
La version que te da Wordpress para que edites es esta Código PHP:
1 <?php
2 /**
3 * The base configurations of the WordPress.
4 *
5 * This file has the following configurations: MySQL settings, Table Prefix,
6 * Secret Keys, WordPress Language, and ABSPATH. You can find more information
7 * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
8 * wp-config.php} Codex page. You can get the MySQL settings from your web host.
9 *
10 * This file is used by the wp-config.php creation script during the
11 * installation. You don't have to use the web site, you can just copy this file
12 * to "wp-config.php" and fill in the values.
13 *
14 * @package WordPress
15 */
16
17 // ** MySQL settings - You can get this info from your web host ** //
18 /** The name of the database for WordPress */
19 define('DB_NAME', 'database_name_here');
20
21 /** MySQL database username */
22 define('DB_USER', 'username_here');
23
24 /** MySQL database password */
25 define('DB_PASSWORD', 'password_here');
26
27 /** MySQL hostname */
28 define('DB_HOST', 'localhost');
29
30 /** Database Charset to use in creating database tables. */
31 define('DB_CHARSET', 'utf8');
32
33 /** The Database Collate type. Don't change this if in doubt. */
34 define('DB_COLLATE', ''); 
Iniciado por
Sanchez Toledano
Busca el error antes. Significa que olvidaste poner una ' o " en una línea anterior.
vale faltaba una comilla en Código PHP:
28 define('DB_HOST', 'localhost');
muchas gracias, Solucionado