Home > Backend Development > PHP Tutorial > phpMyAdmin的安全有关问题

phpMyAdmin的安全有关问题

WBOY
Release: 2016-06-13 10:31:27
Original
940 people have browsed it

phpMyAdmin的安全问题

1.删除默认的pdm root等密码为空的用户


2.根目录下 的 config.inc.php,打开修改:

$cfg['blowfish_secret'] = 'yetnet_j2cms';填写一个字符串
$cfg['Servers'][$i]['controluser'] = 'root';//填
$cfg['Servers'][$i]['controlpass'] = 'yourpassword';填

$cfg['Servers'][$i]['AllowNoPassword'] = false;修改成
$cfg['Servers'][$i]['AllowNoPassword'] = true;

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template