快捷搜索:  

Windows 2003 搭建最新IIS+php+Mysql+Zend+phpMyaAdmin WEB服务器运行环境(3)


zend_extension_ts="D:\php\zend\lib\ZendExtensionManager.dll"
;优化器所在目录。

打开http://localhost/phpinfo.php,页面往下拉些,显示有:

 


Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies with Zend Extension Manager v1.2.0, Copyright (c) 2003-2007, by Zend Technologies with Zend Optimizer v3.3.0, Copyright (c) 1998-2007, by Zend Technologies 则表示安装成功。


五、安装 phpMyAdmin:
1、将下载的phpMyAdmin.rar解压,将phpMyAdmin-3.0.0-rc1-all-languages文件夹重命名为phpMyAdmin,然后将其全部移动到D:\php\下,这样得到phpmyadmin的存放目录D:\php\phpMyAdmin。

2、在IIS中建立新站点或者虚拟目录指向该目录以便通过WEB地址访问,

 

 

 

 

 

 

这里建立默认站点的phpMyAdmin虚拟目录指向D:\php\phpMyAdmin目录通过http://localhost/phpmyadmin/访问

找到D:\php\phpMyAdmin\libraries目录下的 config.default.php ,用记事本或者写字板打开,做如下修改:
搜索
$cfg['PmaAbsoluteUri']
设置你的phpmyadmin的WEB访问URL,这里设置为:$cfg['PmaAbsoluteUri'] = 'http://localhost/phpmyadmin/'; 即:phpmyadmin在默认站点的根目录下。这个可以根据你绑定的具体域名及目录路径来设置。如:我将phpmyadmin放在www.yniso.cn根目录下,那么就设置为$cfg['PmaAbsoluteUri'] = 'http://www.yniso.cn/phpmyadmin/';
搜索
$cfg['blowfish_secret'] =
设置COOKIES加密密匙,如yniso.cn则设置为$cfg['blowfish_secret'] = 'yniso.cn';
搜索$cfg['Servers'][$i]['auth_type'] = 'config',默认为config,安全起见,建议使用cookie,将其修改为$cfg['Servers'][$i]['auth_type'] = 'cookie';
如果要使用默认的config,还需要在下面设置登陆用户名和密码:
$cfg['Servers'][$i]['user'] = 'root';      这里是MySQL连接用户名,默认为root。
$cfg['Servers'][$i]['password'] = '';      这里是MySQL连接用户密码,默认是空的,根据自己之前设置的root密码进行修改。
搜索$cfg['DefaultLang'] = 'en-utf-8' ,将其修改为$cfg['DefaultLang'] = 'zh-gb2312'
搜索$cfg['DefaultConnectionCollation'] = ,将
$cfg['DefaultConnectionCollation'] = 'utf8_general_ci'
修改为
$cfg['DefaultConnectionCollation'] = 'gbk_unicode_ci'
搜索$cfg['DefaultCharset'] = 'utf-8'
将其修改为$cfg['DefaultCharset'] = 'gbk'

至此完成phpmyadmin的配置,windows 2003下配置IIS+PHP+MYSQL+ZEND+PHPMYADMIN也已全部完成,怎么样?如此轻松完成所有配置,想必激动不已吧,赶快打开浏览器,输入:http://localhost/phpMyAdmin/

 

熟悉的登陆界面呈现眼前,大功告成,输入用户root及密码(如没有设置密码则密码留空)即可进入phpMyAdmin数据库管理。

 

读完本教程,您应该会设置了吧
顶(6)
踩(0)

您可能还会对下面的文章感兴趣:

最新评论