Home > Backend Development > PHP Tutorial > 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
Release: 2016-07-21 15:57:55
Original
822 people have browsed it

'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...
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template