phpMyAdmin Login Prompt config file now requires a phrase password

Source: Internet
Author: User
Tags php file mysql database phpmyadmin

The configuration of the phpmyadmin3.2.4 used to manage the MySQL database, login after entry, the page prompts: The configuration file now requires a phrase password.
Workaround: Edit the config.inc.php file in the phpMyAdmin directory to find: $cfg [' blowfish_secret '] = '; /* You must the FILL in the for COOKIE auth! */

In the $cfg[' blowfish_secret '] = '; Enter some characters in the following two single quotes to enhance password security.


Specific Solutions


1, will phpmyadmin/libraries/config.default.php in the

The code is as follows Copy Code
$cfg [' blowfish_secret '] = ';

Change into

The code is as follows Copy Code

$cfg [' blowfish_secret '] = ' 111cn.net ';


(Note: The ' 111cn.net′ is a random character ')

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

The code is as follows Copy Code

$cfg [' blowfish_secret '] = ';

Yes

The code is as follows Copy Code

$cfg [' blowfish_secret '] = ' 111cn.net ';

(Note: The ' 111cn.net′ is a random character ')

This password is used to encrypt cookies so that multiple phpmyadmin or cookies can be confused with other programs.

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.