0

我已经重新安装了 RHEL6(也尝试使用 CENTOS6),当我安装 phpmyadmin(来自 epel)并且cp config.sample.inc.php config.inc.php,将河豚更改为大约 12 个字符长的随机内容并检查auth_type = cookie时,它只会弹出一个 HTTP 基本身份验证表单,而不是html表单。

我试过谷歌搜索,但似乎找不到答案。也尝试过设置chmod 777为 php session 文件夹。我什至尝试过重新启动:(有什么想法吗?

4

1 回答 1

0

Your config.inc.php should look something like this:

    $cfg['blowfish_secret'] = 'xampp'; 
    $i = 0;
    $i++;
    $cfg['Servers'][$i]['auth_type']  = 'cookie';
/*more text below*/

For me this gives out the login form

enter image description here

于 2012-11-09T04:52:07.240 回答