2.14.1.5. Configure database connection in WordPress

Attention!

The connection will not work with the localhost host. The host address must be taken from the database connection credentials.

Database connection details in WordPress are specified in the configuration file wp-config.php:

define('DB_HOST', 'host');
define('DB_NAME', 'database');
define('DB_USER', 'login');
define('DB_PASSWORD', 'password');

Changes can be made using the file manager or any FTP client.

Content

    (7)