[转载]phpMyAdmin安装图解教程
信息来源:[url]http://www.netbei.com/Article/db/db2/200409/2634.html[/url]先下载一份最新版的phpMyAdmin MYSQL管理器,点击本站下载phpMyAdmin
解压后得到一个phpMyAdmin的目录(你可以改名)
找到目录里的config.inc.php文件,打开
找到 $cfg['PmaAbsoluteUri']
修改你将上传到空间的phpMyAdmin的网址
如:$cfg['PmaAbsoluteUri'] = '[url]http://your.domain.com/phpmyadmin/[/url]';
还有下面的
$cfg['Servers'][$i]['host'] = 'localhost';(通常用默认,也有例外)
$cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method (config, http or cookie based)?
在自己的机子里调试用config,如果在网上用cookie。
$cfg['Servers'][$i]['user'] = 'root'; // MySQL user(用户名,自己机里用root,在网上设你的ftp用户名)
$cfg['Servers'][$i]['password'] = ''; // MySQL password (only needed
自己机里不用设
$cfg['Servers'][$i]['only_db'] = ''; // If set to a db-name, only(你只有一个数据就设置一下)
还有设
$cfg['DefaultLang'] = 'zh';
设置完毕可以上传到网上了。
浏览[url]http://your.domain.com/phpmyadmin/[/url] 当然你设置不同就用那个网址。
如果设置了cookie(看上面)就会有文章开头的登陆窗口
登陆后或没有设置cookie就可以进入phpmyadmin的主页面
在左边选择一个表(如cdb_members),可以看到以下
页:
[1]