phpmyadmin v4.9.11管理工具源码下载后修改连接mysql数据库端口号和登录认证方式
phpmyadmin v4.9.11管理工具源码下载后修改连接mysql数据库端口号和登录认证方式源码:https://files.phpmyadmin.net/phpMyAdmin/4.9.11/phpMyAdmin-4.9.11-all-languages.zip
解压进入libraries文件夹中,config.default.php文件
如果my.ini设置了其它连接端口,phpmyadmin配置文件也要修改
* MySQL port - leave blank for default port
*
* @global string $cfg['Servers'][$i]['port']
*/
$cfg['Servers'][$i]['port'] = '3306';
登陆方式,建议从cookie替换为http,更安全
* Authentication method (valid choices: config, http, signon or cookie)
*
* @global string $cfg['Servers'][$i]['auth_type']
*/
$cfg['Servers'][$i]['auth_type'] = 'http';
这是一个修改好的v4.9.11版本,解压即用
后续版本不支持php5.6下运行,就没必要更新了
页:
[1]