Home >Backend Development >PHP Tutorial >如何给phpadmin一个保护_PHP

如何给phpadmin一个保护_PHP

WBOY
WBOYOriginal
2016-06-01 12:38:341300browse

如何给phpadmin一个保护 如何给phpadmin一个保护,即要输入密码才能进入phpadmin  
---------------------------------------------------------------  
 
在config.inc.php中:  
$cfgServers[$i]['auth_type']          =  'cookie';        //  Authentication  method  (config,  http  or  cookie  based)?  
 
有三种选择config  http  cookie  
config  :  按配置文件中的密码  (也就是标准方式)  这种方式没有认证  
http  :  使用HTTP认证  
cookie  :  使用COOKIE登录认证  
 
如果是使用IIS+PHP是没有办法使用HTTP认证的.这个功能只有在使用APACHE+模块安装的PHP上才能使用.  
你使用COOKIE方式吧,安全性也是很好的呀.  
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