Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Setting icon and logout is missing from phpMyAdmin

I am able to create users, but how can I log in to created users?

The setting icon and logout are missing from phpMyAdmin.

Annotated phpMyAdmin Screenshot

like image 441
John Don Avatar asked Feb 07 '23 19:02

John Don


1 Answers

The logout button is only displayed with auth_type 'cookie' or 'http'; if yours is set to 'config' then the logout button won't display (because that wouldn't make any sense in that context as the user and password are hardcoded to config.inc.php.

Simply edit your config.inc.php and change the auth_type.

like image 99
Isaac Bennetch Avatar answered Feb 10 '23 09:02

Isaac Bennetch