Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress Local WordPress Development Local WordPress Development Installing WordPress Locally

Error message

Error establishing a database connection This either means that the username and password information in your wp-config.php file is incorrect or we can't contact the database server

Help!

1 Answer

Luis Vazquez
Luis Vazquez
6,370 Points

Hi Liz,

Make sure that the database, username, password, and host within the wp-config.php are correct.

If it matches and you're still having problems, try changing DB_USER, DB_PASSWORD, and DB_HOST to this:

/** MySQL database username */
define('DB_USER', 'root');

/** MySQL database password */
define('DB_PASSWORD', '');

/** MySQL hostname */
define('DB_HOST', 'localhost');

If it still doesn't work, add copy and paste lines 17 - 40 of your wp-config.php file in a comment on this thread and I'll try to help you some more.

-Luis