Home > php教程 > php手册 > phpmyadmin 修改记录(不断更新)

phpmyadmin 修改记录(不断更新)

WBOY
Release: 2016-06-13 10:51:00
Original
1875 people have browsed it

适用phpMyAdmin新版3.5.2

1 关于远程登录
    遇到的问题:用linux系统的软件包方法安装的不能登录,需要下载单独的安装包
    需要修改项:phpMyAdmin/libraries/config.default.php
        $cfg['Servers'][$i]['host'] =“远程IP地址”;
        $cfg['Servers'][$i]['port'] = '端口号';
        $cfg['Servers'][$i]['user'] = 'root';
        $cfg['Servers'][$i]['password'] = 'yhnji-db-yoqoo';

2 关闭表单自动填充禁用  www.2cto.com
       修改:phpMyAdmin/libraries/auth/cookie.auth.lib.php 第193行注销输出或者删掉都行

3 PhpMyAdmin 配置文件现在需要一个短语密码 的解决方法
    编辑config.default.php
    $cfg['Servers'][$i]['auth_type'] = 'cookie';
    $cfg['blowfish_secret'] = 'abcde';(其中的"abcde"自定义)
    这个密码用于Cookies的加密,以免多个PhpMyAdmin或者和其他程序共用Cookies时搞混。

 

作者:wufa
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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template