Home  >  Article  >  Backend Development  >  Solution to the configuration file in phpmyadmin now requiring a top-secret phrase password_PHP Tutorial

Solution to the configuration file in phpmyadmin now requiring a top-secret phrase password_PHP Tutorial

WBOY
WBOYOriginal
2016-07-21 15:57:55777browse

'blowfish_secret' uses an arbitrary string as the encrypted string of the cookie. If there is no encryption key, the system will display "The configuration file now requires a top-secret phrase password (blowfish_secret)". The configuration is as follows:
vi phpmyadmin/config.inc. php

$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['blowfish_secret'] = 'sakia'; (The "sakia" is customized)
?>
After modification, it will be much more convenient to log in to phpmyadmin in the future, but be sure not to use an empty password, remember!

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/317746.htmlTechArticle'blowfish_secret' uses an arbitrary string as the cookie encryption string. If there is no encryption key, the system will display " Configuration files now require a top secret phrase password (blowfish_secret)", configure...
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