Phpmyadmin login page

Please help, it's always hard for me to go through all this. When all I need is phpmyadmin to have a registration form so that I can enter the password and username. I do not need all the materials included in this documentation. Is there a beginner tutorial on how to have a login form in phpmyadmin. Such documents really suck. http://www.phpmyadmin.net/documentation/Documentation.html#config

+5
source share
3 answers

if you want to make a login from the form, go to config.inc.php and change

$cfg['Servers'][$i]['auth_type'] = 'config';

to

$cfg['Servers'][$i]['auth_type'] = 'cookie';

Now restart the application server, and if you get phpmyadmin, it will prompt you to enter a username and password.

+19

, phpmyadmin wamp (c:/wamp/apps/phpmyadmin/config.php)

$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
+1

phpmyadmin http://localhost/phpmyadmin/

How did you install it? From your package manager or source?

Edit

Well, I just installed it and I have no problem.

Make sure that the services are running (in the screenshot, run โ€œRun all servicesโ€), and you can click the phpmyadmin link

0
source

All Articles