I'm trying to setup phpmyadmin on my Apache web server. I'm looking for some idiot proof instructions on setting up advanced authentication. The docs just don't do it for me.
My Opinion ??? It is the best tool for a MySQL professional.
It is very, very useful !
To use advanced authentication follow these steps...
Edit the file config.inc.php and change the following lines:
------------------------------------------------------------
line 45 - cfgServers[1]['stduser'] = 'your_user'
line 46 - cfgServers[1]['stdpass'] = 'your_password'
line 47 - cfgServers[1]['adv_auth'] = TRUE;
Insert a user on mysql database: (table user)
-----------------------------------------------------
USE mysql;
INSERT INTO user(Host,User,Password,Select_priv)
VALUES("localhost","your_user","your_password","Y"
THAT's ALL
Hope it helps you !
If you get problems .... let me know !
check out mascon too. I prefer it over phpMyAdmin although phpMyAdmin is definitely an amazing app. It's not free but I think it blows away phpMyAdmin. It has allowed me to create my MySQL/PHP apps in half the time with it's query saving and report features.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.