|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
我的这套线路可能跟许多学习PHP的爱好者不谋而合,这也算是一个循序渐进的学习过程,不过新手不要看到上面的概括就以为学习蛮简单的,默默在此不得不对您稍微泼一下冷水,任何东西其实都不简单。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.就是说不必更改它就能够了... 通过这段时间的学习实践,对软件开发有了更多新的认识,不在局限于之前的片面性。当然,现在所学到的东西其实并不多,离当一个真正的程序员,还有很大的差距。 |
|