The PhpMyAdmin configuration file now requires a phrase password

Source: Internet
Author: User

When you log in to phpMyAdmin, you are prompted at the bottom of the page: "The configuration file now requires a phrase password. This means that you need to set a cookie password in the configuration file to prevent cookies from confusing.

/* * * the ' cookie ' Auth_type uses AES algorithm to encrypt the password. if* at least one server configuration uses ' Cookies ' auth_type, enter here A * pass phrase that would be is used by AES. The maximum length seems to be 46* characters.** @global string $cfg [' Blowfish_secret ']*/$cfg[' Blowfish_secret '] = ';

The workaround is divided into the following two steps:

The first step: the phpmyadmin/libraries/config.default.php in the

$cfg[' blowfish_secret '] = ';

Change into

$cfg[' blowfish_secret '] = ' 123456 ';

The ' 123456′ ' is a random character.

Step two: In the phpMyAdmin directory, open the config.sample.inc.php,18 line

$cfg[' blowfish_secret '] = ';

Change into

$cfg[' blowfish_secret '] = ' 123456 ';

The ' 123456′ ' is a random character.

Do the above two steps, refresh the webpage, OK, "the configuration file now requires a phrase password." "The hint does not exist!

The PhpMyAdmin configuration file now requires a phrase password

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.