4

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

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
John Don
  • 97
  • 1
  • 2
  • 12

2 Answers2

8

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.

Isaac Bennetch
  • 11,830
  • 2
  • 32
  • 43
1

My experience has been that this happens when one links to phpMyAdmin from a control panel, rather than logging in directly.

If this is what you have done, then logging out of cPanel (etc) should also log you out of phpMyAdmin.

Parapluie
  • 714
  • 1
  • 7
  • 22