Home  >  Article  >  Backend Development  >  phpmyadmin中配置文件现在需要绝密的短语密码的解决方法_php技巧

phpmyadmin中配置文件现在需要绝密的短语密码的解决方法_php技巧

WBOY
WBOYOriginal
2016-05-17 09:41:15905browse

'blowfish_secret'用一个任意字符串作为cookie的加密字符串,如果没有加密钥匙,系统会显示"配置文件现在需要绝密的短语密码(blowfish_secret) " ,配置如下:
vi phpmyadmin/config.inc.php

$cfg['Servers'][$i]['auth_type'] = 'cookie'; 
$cfg['blowfish_secret'] = 'sakia';(其中的"sakia"自定义)
?> 
修改以后,以后登入phpmyadmin就方便多了,但一定不要使用空密码,切记!

Statement:
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