PHP头条
热点:

phpmysqladmin2.26安装方法。。。


mysql安装

上接http://www.dev-club.com/club/bbs/list.asp?boardid=31&page=5&t=1690132&tp=%5B%u539F%u521B%5DWIN98/ME%u5B89%u88C5APACHE+MYSQL+PHP%u5B89%u88C5%u6700%u7EC8%u6280%u5DE7...

1.当然是解压那文件放在D:里面(就是全站所在的目录),为了方便使用我把文件夹名字改了sqladmin...(这个随你喜欢)
2.进入文件夹打开:config.inc.php
然后修改一点点东西..如下!
$cfgServers[$i]['host'] = 'localhost'; // MySQL hostname
$cfgServers[$i]['port'] = '3306'; // MySQL port - leave blank for default port
$cfgServers[$i]['socket'] = '; // Path to the socket - leave blank for default socket
$cfgServers[$i]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
$cfgServers[$i]['controluser'] = '; // MySQL control user settings
// (this user must have read-only
$cfgServers[$i]['controlpass'] = '; // access to the "mysql/user"
// and "mysql/db" tables)
$cfgServers[$i]['auth_type'] = 'config'; // Authentication method (config, http or cookie based)?
$cfgServers[$i]['user'] = 'root'; // MySQL user
$cfgServers[$i]['password'] = '这里填上您的SQL所设置的密码';// MySQL password (only needed
// with 'config' auth_type)
$cfgServers[$i]['only_db'] = '; // If set to a db-name, only
// this db is displayed
// at left frame
// It may also be an array
// of db-names
$cfgServers[$i]['verbose'] = '; // Verbose name for this host - leave blank to show the hostname
$cfgServers[$i]['bookmarkdb'] = '; // Bookmark db - leave blank for no bookmark support
$cfgServers[$i]['bookmarktable'] = '; // Bookmark table - leave blank for no bookmark support
$cfgServers[$i]['relation'] = '; // table to describe the relation between links (see doc)
// - leave blank for no relation-links support

$i++;
$cfgServers[$i]['host'] = 'localhost';
$cfgServers[$i]['port'] = '3306';
$cfgServers[$i]['socket'] = ';
$cfgServers[$i]['connect_type'] = 'tcp';
$cfgServers[$i]['controluser'] = ';
$cfgServers[$i]['controlpass'] = ';
$cfgServers[$i]['auth_type'] = 'config';
$cfgServers[$i]['user'] = 'root';
$cfgServers[$i]['password'] = '这里填上您的SQL所设置的密码';
$cfgServers[$i]['only_db'] = ';
$cfgServers[$i]['verbose'] = ';
$cfgServers[$i]['bookmarkdb'] = ';
$cfgServers[$i]['bookmarktable'] = ';
$cfgServers[$i]['relation'] = ';

$i++;
$cfgServers[$i]['host'] = 'localhost';
$cfgServers[$i]['port'] = '3306';
$cfgServers[$i]['socket'] = ';
$cfgServers[$i]['connect_type'] = 'tcp';
$cfgServers[$i]['controluser'] = ';
$cfgServers[$i]['controlpass'] = ';
$cfgServers[$i]['auth_type'] = 'config';
$cfgServers[$i]['user'] = 'root';
$cfgServers[$i]['password'] = '这里填上您的SQL所设置的密码';
$cfgServers[$i]['only_db'] = ';
$cfgServers[$i]['verbose'] = ';
$cfgServers[$i]['bookmarkdb'] = ';
$cfgServers[$i]['bookmarktable'] = ';
$cfgServers[$i]['relation'] = ';

如果您是安装我以前的安装方法就只要跟着一样改就可以了...如果用户名您是改了的话那您把root改掉就可以了...
3306为端口...端口来说就看my.ini是否为3306..如果是就不不用改直接加或更正..如果非3306那么就直接把端口改掉..

然后查找:$cfgPmaAbsoluteUri修改成:$cfgPmaAbsoluteUri = 'http://localhost/sqladmin/';其中sqladmin就是文件夹的名称..

最后一步了:把sqladmin里面的config.inc.php复制到外面...我这里就是d:\里面...您的就看您的全站是放在那里就修改您的站点所在的目录..总之就是放在可以看到sqladmin文件夹外的目录就可以了..

最后运行http://localhost/sqladmin/index.php如果担出了网页就可以了...照理由是英文的...只要把english选项选择chinese simxxxxx就可以变成中文了...

可能有打错字!我看看如果没有错的话下面就写着OK!!!

有些人想用2.20,在这里也说说吧!很简单...
大多和上面的都一样...只是不要搜索$cfgPmaAbsoluteUri.就是说不用更改它就可以了...

www.phpzy.comtrue/php/6288.htmlTechArticlephpmysqladmin2.26安装方法。。。 mysql安装 上接http://www.dev-club.com/club/bbs/list.asp?boardid=31t=1690132 // MySQL hostname $cfgServers[$i]['port'] = '3306'; // MySQL port - leave blank for default port $cfgServers[$i]['socket'...

相关文章

相关频道:

PHP之友评论

今天推荐