Setup:
Problem:
Only one server is usable at the same time in the same browser.
How to reproduce:
The session on the first server is then closed, and the log-in form is displayed with error "Your session has expired. Please log in again.".
I dug into the source code to understand what was going on.
The PHP session identifier is stored into cookie "phpMyAdmin". Each time a user logs in, this cookie is overwritten.
Then, only the corresponding session can work, otherwise a token mismatch error is generated in libraries/common.inc.php (line 462, variable $token_mismatch).
Do you plan to make this work in the future?
PR: https://github.com/phpmyadmin/phpmyadmin/pull/1563
PR: https://github.com/phpmyadmin/phpmyadmin/pull/1762