Home  >  Article  >  Backend Development  >  PhpMyAdmin configuration file now requires a phrase password modification method_PHP tutorial

PhpMyAdmin configuration file now requires a phrase password modification method_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 14:54:32984browse

The new version of PhpMyAdmin has enhanced security and requires a phrase password to be set in the configuration file. Otherwise, after entering, there will be a red warning prompt saying "The configuration file now requires a phrase password".

Solution:

1. Change

in phpMyAdmin/libraries/config.default.php

$cfg['blowfish_secret'] = ''; changed to $cfg['blowfish_secret'] = '123456'; (Note: '123456' is an arbitrary character)

2. In the phpMyAdmin directory, open config.sample.inc.php, line 18

$cfg['blowfish_secret'] = ''; changed to $cfg['blowfish_secret'] = '123456'; (Note: '123456' is an arbitrary character)

This password is used to encrypt Cookies to avoid confusion when multiple PhpMyAdmin or sharing Cookies with other programs.

Complete the above two steps, refresh the web page, OK, the prompt "The configuration file now requires a phrase password." no longer exists!

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/364582.htmlTechArticleThe new version of PhpMyAdmin has enhanced security and requires a phrase password to be set in the configuration file. Otherwise, after entering, there will be a red warning prompt that the configuration file now requires a phrase password. ...
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