quello l'ho fatto. Questo è il codice della pagina wp.config.php
codice:
Database Name wordpress The name of the database you want to run WP in.
User Name pippo Your MySQL username
Password pippo ...and MySQL password.
Database Host localhost You should be able to get this info from your web host, if localhost does not work.
Table Prefix wp_ If you want to run multiple WordPress installations in a single database, change this.
codice:
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'wordpress');
/** MySQL database username */
define('DB_USER', 'pippo');
/** MySQL database password */
define('DB_PASSWORD', 'pippo');
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');