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, Apt-get installation of phpMyAdmin as an example.
Document location in/etc/phpmyadmin/config.inc.php
Modify the document as follows:
Copy the Code code as follows:
if (!empty ($dbname)) {
/* Authentication type */
$cfg [' Servers '] [$i] [' auth_type '] = ' cookie ';
Re-set Login mode
$cfg [' Servers '] [$i] [' auth_type '] = ' http ';
PS: In fact, many places on the internet have been mentioned, instead of the HTTP mode can be, but why I have not been successful? Since phpMyAdmin has 3 config.inc.php documents, I have been modifying the documents under the phpMyAdmin folder all along. Correct documentation in/etc/phpmyadmin/config.inc.php (as an example of phpMyAdmin installed in Ubuntu environment, by Apt-get Way)
The above describes the phpMyAdmin download to extend the phpMyAdmin login time, including the content of the phpMyAdmin download, I hope the PHP tutorial interested in a friend helpful.