I realize one of my bad habit, not really bad I think, that I always forget to make a note after found some problem solving. And it make a repeated confusion when the next day I found something similar with that.
So now, I decided to write every thing I think it is valuable to write.
I am learning about web programming. Thus, I will face every thing about web programming such as XAMPP server, PHP codes, MySQL queries, etc.
This is the most repeated mistake I've always confused whenever I install new XAMPP software in my or my friend's computer. The password that set in phpmyadmin.
After setting password, phpmyadmin always goes error "Cannot connect: invalid settings".
The solution for this issue is :
- Go to XAMPP folder
- open phpMyadmin folder
- open config.inc.php file
- find this rows
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'yourpassword';
- change "yourpassword" with your own password.
- Solved
0 comments:
Post a Comment
We really appreciate if you comment after reading our posts. Thank You