I cant log in to wamp server although i get in the phpmyadmin. When i try to open my project i get access denied for user 'root'@'localhost' (using password yes)

Recommended Answers

All 2 Replies

Test if you have entered the correct credentials.
Goto the phpmyadmin folder and open this file: config.inc.php
Look for this variables:
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'admin';
$cfg['Servers'][$i]['extension'] = 'mysqli';

Thanks Klaus. I did this before. The problem was (for future notice) the confurigation of the database on my project.
define('DB_SERVER', 'localhost');
define('DB_USERNAME', 'root');
define('DB_PASSWORD', 'Your_Password');
define('DB_DATABASE', 'Your_Database');

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.