Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

login page in phpmyadmin

Tags:

phpmyadmin

please help, Im always having trouble having to go through all this stuff. When all I need is for phpmyadmin to have a login form so that I could input the password and username. I don't need all the stuff included in this documentation. Is there a tutorial for beginners on how to have a login form in phpmyadmin. Documentations like this really sucks. http://www.phpmyadmin.net/documentation/Documentation.html#config

like image 868
user225269 Avatar asked Feb 26 '10 11:02

user225269


People also ask

How do I access my phpMyAdmin login page?

You should be able to access phpMyAdmin directly, by browsing to http://127.0.0.1/phpmyadmin. Log in to phpMyAdmin by using the following credentials: Username: root. Password: The same as the application password.

How do I create a login in phpMyAdmin?

To create a new user, click the Add user account link near the bottom of the User accounts page (you must be a “superuser”, e.g., user “root”). Use the textboxes and drop-downs to configure the user to your particular needs.

How do I login as another user in phpMyAdmin?

Open your database in PhpMyAdmin. Click on the database name in the menu to the left, it will unfold all tables. Click on the users table, for example, wp_users. Locate the user you want to change the login name for and click Edit.


1 Answers

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

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

to

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

Now restart the appache server and if you goto phpmyadmin it will prompt you for a username and a password.

like image 58
alain Avatar answered Sep 28 '22 03:09

alain