Here we can modify its login mode to http. In this way, you can continue to use it as long as the browser is not closed.
Take phpmyadmin installed through apt-get in Ubuntu environment as an example.
The document location is /etc/phpmyadmin/config.inc.php
Modify the document as follows:
Copy the code The code is as follows:
if (!empty($dbname)) {
/* Authentication type */
// $cfg['Servers'][$i]['auth_type'] = 'cookie';
//Reset login mode
$cfg['Servers'][$i]['auth_type'] = 'http';
The above introduces how to download phpmyadmin and extend the login time of phpmyadmin, including the content of phpmyadmin download. I hope it will be helpful to friends who are interested in PHP tutorials.