The PhpMyAdmin configuration file now requires a phrase password workaround

  • 2021-01-22 05:30:09
  • OfStack

The new version of PhpMyAdmin has enhanced security by requiring 1 phrase password in the configuration file. Otherwise, you will get "Profile now requires 1 phrase password." The red alarm sigh prompts.

Solution:

1, will be phpMyAdmin/libraries/config. default. php

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

2, in phpMyAdmin directory, open config sample. inc. php, 18

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

This password is used to encrypt Cookies to avoid confusion if multiple PhpMyAdmin or Cookies are shared with other programs.

Do the above two steps, refresh the page, OK, "Profile now requires 1 phrase password." The prompt no longer exists!


Related articles: