这里我们可以修改它的登录模式为http。这样,只要浏览器不关闭就可以继续使用。
以ubuntu环境,通过apt-get方式安装的phpmyadmin为例。
文档位置在 /etc/phpmyadmin/config.inc.php
如下修改文档:
复制代码 代码如下:
if (!empty($dbname)) {
/* Authentication type */
// $cfg['Servers'][$i]['auth_type'] = 'cookie';
//重新设定登录模式
$cfg['Servers'][$i]['auth_type'] = 'http';