Here we can modify its login mode to HTTP. This allows you to continue using the browser as long as it is not closed.
Take the Ubuntu environment, the Apt-get installation of the phpMyAdmin as an example.
Document location in/etc/phpmyadmin/config.inc.php
Modify the document as follows:
Copy Code code as follows:
if (!empty ($dbname)) {
/* Authentication Type * *
$cfg [' Servers '] [$i] [' auth_type '] = ' cookie ';
Reset Login Mode
$cfg [' Servers '] [$i] [' auth_type '] = ' http ';
PS: In fact, many places on the Internet are mentioned, change to HTTP mode can be, but why I have not succeeded? Because phpMyAdmin has 3 config.inc.php documents, I have always changed the documents under the phpMyAdmin folder only. The correct documentation is in/etc/phpmyadmin/config.inc.php (for example, phpMyAdmin installed in Ubuntu environment, by Apt-get Way)