|
Open the file wp-config.php in the WordPress installation directory
in a text editor, and edit the "MySQL settings" section:
// ** MySQL settings ** //
define('DB_NAME', 'mywordpressdb');
define('DB_USER', 'mywordpressuser');
define('DB_PASSWORD', 'yourpasswordhere');
define('DB_HOST', 'localhost');
Set arbitrary phrases in AUTH_KEY, SECURE_AUTH_KEY and
LOGGED_IN_KEY. If you require internationalization, set the
WPLANG value accordingly.
|