Home > php教程 > php手册 > phpmyadmin配置文件现在需要绝密的短语密码

phpmyadmin配置文件现在需要绝密的短语密码

WBOY
Release: 2016-06-13 09:57:05
Original
1302 people have browsed it

在使用phpmyadmin时我们可能会碰到phpmyadmin配置文件现在需要绝密的短语密码错误提示,下面我来给大家总结解决办法,有需要了解的朋友可参考。

配置如下:phpmyadmin/config.inc.php

 代码如下 复制代码

$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['blowfish_secret'] = 'sakia';(其中的"sakia"自定义)
?>

如果你的phpmyadmin中没有config.inc.php 这个文件我们要找到 phpMyAdmin 文件中有一个文件“config.sample.inc.php”,然后重命名为“config.inc.php”上传服务器。

然后把
 

 代码如下 复制代码
$cfg['blowfish_secret'] = ”;

或其它值即可

上面介绍的是windows如果是linux中的怎么解决

那么CentOS下安装的phpmyadmin中的“$cfg['blowfish_secret'] =”语句在config.inc.php里

 代码如下 复制代码
 vim /usr/share/phpmyadmin/config.inc.php

找到

 代码如下 复制代码
 $cfg['blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */

在=后面加上任意字符

 代码如下 复制代码
 $cfg['blowfish_secret'] = 'pooy'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */

pooy是我随意加上的字符

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template