发表于:2011-07-15 00:00:00来源:SOUAB.COM人气:3652
首页说下下载地址:
http://download.mysql.cn/opencode/2006/0207/55.html
可以通过以上网址下载.也可以下载本文章下的附件;
接下来说下phpMyAdmin 2.7.0的配置
===========================分隔符
解压phpMyAdmin 2.7.0-pl2 到IIS根目录后 打开 config.default.php
注意 新版的 配置文件是 config.default.php 然后 做如下修改
搜索 $cfg['PmaAbsoluteUri'] 添加你的phpmyadmin的URL路经 最好本地路经 当然也可以是远程路经
如 $cfg['PmaAbsoluteUri'] = 'http://localhost/';
注意 这里假设phpmyadmin在默认站点的根目录下
或 $cfg['PmaAbsoluteUri'] = 'http://你的网站地址/';
搜索 $cfg['blowfish_secret'] 这里是在你配置 MySQL 时 设定好的root 的密码 例如 root密码为 888888
改为 $cfg['blowfish_secret'] = '888888';
搜索 $cfg['DefaultLang'] 将其改为 zh-gb2312 ;
搜索 $cfg['DefaultCharset'] 将其改为 gb2312 ;
搜索 $cfg['Servers'][$i]['auth_type'] 默认为config,这很不安全,不推荐,建议使用cookie
改成 $cfg['Servers'][$i]['auth_type'] = 'cookie';
注意这里如果设置为config请在下面设置用户名和密码
例如:
$cfg['Servers'][$i]['auth_type'] = 'cookie'; // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user'] = 'root'; // MySQL user
$cfg['Servers'][$i]['password'] = '123123.'; // MySQL password (only needed