phpMyAdmin 2.10.2 配置

1. 复制 phpMyAdmin/libraries/config.default.php 为 phpMyAdmin/config.inc.php
2. 用记事本打开config.inc.php 参照以下设置

$cfg['PmaAbsoluteUri'] = '';   //phpMyAdmin的网址 我发现不设置也正常
$cfg['Servers'][$i]['host'] = 'localhost'; //数据库地址
$cfg['Servers'][$i]['auth_type'] = 'cookie'; // 认证方式 (config, http or cookie based)
$cfg['Servers'][$i]['user'] = 'root';  // MySQL user(用户名,自己机里用root,在网上一般需要虚拟主机提供商告诉你。)
$cfg['Servers'][$i]['password'] = '';  // MySQL 密码
$cfg['Servers'][$i]['only_db'] = '';  // 默认选择哪个库
$cfg['DefaultLang'] = 'zh-gb2312';  // 语言
$cfg['DefaultCharset'] = 'gb2312';  // 编码

3.浏览 http://网站/phpMyAdmin/ 

注意:当修改过 config.inc.php 文件后 打开一直没有生效,这时可以清空一下浏览器缓存。我就碰到改了 config.inc.php  但还是一直提示 访问被拒绝 的情况.

你可能感兴趣的:(phpMyAdmin 2.10.2 配置)