Home >Database >Mysql Tutorial >wamp中phpmyadmin联接多个mysql

wamp中phpmyadmin联接多个mysql

WBOY
WBOYOriginal
2016-06-07 16:15:011287browse

wamp中phpmyadmin连接多个mysql 1.wamp\alias\phpmyadmin.conf中添加Alias /mysql201 "D:/wamp/apps/phpmyadmin201/" Directory "D:/wamp/apps/phpmyadmin201/" Options Indexes FollowSymLinks MultiViews AllowOverride all Order Deny,AllowDeny from allA

wamp中phpmyadmin连接多个mysql
1.wamp\alias\phpmyadmin.conf中添加
Alias /mysql201 "D:/wamp/apps/phpmyadmin201/" 
<Directory "D:/wamp/apps/phpmyadmin201/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
        Order Deny,Allow
	Deny from all
	Allow from 127.0.0.1
</Directory>

2.复制wamp\apps\phpmyadmin3.2.0.1到phpmyadmin201

3.修改配置config.inc.php
$cfg['Servers'][$i]['host']
$cfg['Servers'][$i]['user']
$cfg['Servers'][$i]['password']

遇到SHOW PLUGINS错误,修改wamp\apps\phpmyadmin201\libraries\blobstreaming.lib.php
272行$query = "SHOW PLUGINS"为SHOW ENGINES
Statement:
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