Home  >  Article  >  Backend Development  >  phpmyadmin modification record (continuously updated)_PHP tutorial

phpmyadmin modification record (continuously updated)_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:52:381258browse

Applicable to phpMyAdmin new version 3.5.2

1 About remote login
Problems encountered: If you install using the Linux system software package method, you cannot log in, and you need to download a separate installation package
Items that need to be modified: phpMyAdmin/libraries/config.default.php
          $cfg['Servers'][$i]['host'] = "Remote IP address";
          $cfg['Servers'][$i]['port'] = 'Port number';
          $cfg['Servers'][$i]['user'] = 'root';
          $cfg['Servers'][$i]['password'] = 'yhnji-db-yoqoo';

2 Turn off form autofill and disable www.2cto.com
​​ ​Modify: phpMyAdmin/libraries/auth/cookie.auth.lib.php Line 193 can be logged out or deleted.

3 Solution to PhpMyAdmin configuration file now requiring a phrase password
Edit config.default.php
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['blowfish_secret'] = 'abcde'; ("abcde" is customized)
This password is used to encrypt cookies to avoid confusion when cookies are shared by multiple PhpMyAdmin or other programs.

Author:wufa

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/478099.htmlTechArticleApplicable to the new version of phpMyAdmin 3.5.2 1 Regarding the problems encountered in remote login: Installed using the software package method of the Linux system Unable to log in, you need to download a separate installation package and modify items: phpMyAdm...
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