WinXP + Apache +PHP5 + MySQL + phpMyAdmin安装全功略


Posted in PHP onJuly 09, 2006

I finally got this to work, so I will post my findings here. 

//PHP 5 : Windows build needs a MySQL DLL 
//PHP 5.0 doesn't come with mysql support... You have to get the librariesyourself...  
//I think u can get them from mysql.com 

// PHP 5 Beta 2  
//The file php_mysql.dll comes with these snapshots, as well as a new version of libmySQL.dll,  
//so I suggest a full upgrade to Beta 2 instead of just extracting php_mysql.dll for use with Beta 1. 

-------------------------------------------------------- 
下载下面三种软件,做好安装准备 

apache_2.0.47-win32-x86-no_ssl.msi 
mysql-4.0.14-win.zip 
phpMyAdmin-2.5.3-rc1-php.zip 
---------------------------------------------------------------------------------------------- 
PHP 5 Beta 2 http://snaps.php.net/win32/php5-win32-latest.zip size:5.87 MB (6,162,835 bytes) 
---------------------------------------------------------------------------------------------- 

<1>安装配置PHP 

1.解压缩PHP压缩包到C:\php\ 

2.复制C:\php\目录下的php4ts.dll及C:\php\dlls目录下的所有文件到windows安装目录的系统文件夹里 
(win9x/me是system目录,winNT,2k/winXP,2003是system32目录) 

复制C:\php\php.ini-dist到windows安装目录下(如:c:\windows),并将其改名为php.ini。用记事本打开,修改一下信息: 

搜索extension_dir = ./ 这行,并将其路径指到你的PHP目录下的extensions目录,比如: 

extension_dir = C:\php\extensions 

如若想支持更多模块,,搜索: 
;Windows Extensions 
;Note that MySQL and ODBC support is now built in, so no dll is needed for it. 

下面都用分号在前面注释掉了支持的扩展模块,如果你想PHP支持某个模块,请将前面的“;”去掉即可 
修改完成后,保存php.ini,到此完成PHP的安装和配置。 
我们在下面加入一行 

extension=php_mysql.dll 

//Note 1: The extension dir need not be ".\", as Hermawan mentioned. It works fine for me with the extensions subdir where the other extensions are located. 

//Note 2: The php.ini file need not be in the Apache root, as lars mentioned. It works fine for me in the Windows dir. 

<2>安装Apach2 
1.备份 C:\Program Files\Apache Group\Apache2\conf\httpd.conf 文件。 
2.用记事本打开C:\Program Files\Apache Group\Apache2\conf\httpd.conf 
找到: 

#NameVirtualHost * 


修改为: 

NameVirtualHost 127.0.0.1 //或localhost 


修改下面几行: 

ServerAdmin (你刚才安装时候输入的管理员信箱) 
DocumentRoot C:\Program Files\Apache Group\Apache2\htdocs 
ServerName Apache2 
ErrorLog C:\Program Files\Apache Group\Apache2\logs\error_log 
CustomLog C:\Program Files\Apache Group\Apache2\logs\access_log common 

找到: 
AddType application/x-tar .tgz 
在下面添加以下两行: 
AddType application/x-httpd-php .php 
AddType image/x-icon .ico 

找到: 
#LoadModule ssl_module modules/mod_ssl.so 
在下面添加一行: 
LoadModule php5_module C:\php\sapi\php4apache2.dll //这里php5_module是关键,如果php4_module apache就无法启动了  

增加默认文件: 
找到DirectoryIndex * 这行,可以这样修改,添加默认的文件名: 
DirectoryIndex index.php default.php index.htm index.html default.htm default.html 
保存文件,重起apache服务器。 

最后,在该文件末尾加上下面两行 

ScriptAlias /php/ "c:/php/" 
Action application/x-httpd-php "/php/php.exe“ 

到此Apache的PHP环境已经完全建立了。 

<3>测试: 

用记事本新建个文件,写下下面几行,保存到C:\Program Files\Apache Group\Apache2\htdocs目录下,这个目录就是你的站点跟目录,命名为phpinfo.php.然后在浏览器中输入http://localhost/phpinfo.php 就可以看到想尽的关于PHP的信息了。 

phpinfo.php代码如下:  

<?

phpinfo(); 

?>

  

<4>安装mysql  

1.按默认安装在C:\mysql 

Copy the following files to the Apache modules directory: 

  • php\php4ts.dll 
  • php\sapi\php4apache2.dll 
  • php\dlls\iconv.dll 

If any of these files are missing in the modules directory, Apache will fail to start. 

Be sure the extension can find the following files: 

  • php_mysql.dll  
  • iconv.dll 
  • libmySQL.dll 

If any of them can't be found, Apache will start but will issue a warning like this: "Unknown(): Unable to load dynamic library 'c\php\extensions\php_mysql.dll" - The specified module could not be found." 

php_mysql.dll should be in the extensions directory. 

iconv.dll should be in the Apache modules directory. 

libmySQL.dll must be either in the Apache root directory or the Windows system directory. I prefer the former because it's cleaner, as other applications don't necessarily use this MySQL library version. 

Note 3: Be sure to use the libmySQL.dll file bundled with PHP. In my case, trying to use the libmySQL.dll from the MySQL 4.1 alpha package resulted in this error message: "Unknown(): Unable to load dynamic library 'c:\php\extensions\php_mysql.dll" - The specified procedure could not be found." 

Start Apache and everything should be fine. 

2.运行C:\mysql\bin\winmysqladmin.exe 设定user 和password 
3.运行mysql,测试一下 
mysql> show databases; 

+-----------+  
| Databases |  
+-----------+  
| mysql |  
| test |  
+-----------+  

如果出现以上画面,表明mysql已经安装成功;  

2.更改MySQL系?之管理者密?(新密?的地方,?Q成您要?定的密?) 
mysql> UPDATE user SET password=password('新密?') where user='root'; 

3.编辑php5中的启动文件php.ini,将mysql和php5连接起来. 
mysql.default_port= 
mysql.default_host= 
mysql.default_user= 
mysql.default_password= 
改为: 
mysql.default_port=3306 说明的是mysql的缺省端口一般为3306  
mysql.default_host=localhost 说明的是mysql的缺省主机名称 
mysql.default_user=jinchao 说明的是mysql的缺省的用户名(root是最高级用户) 
mysql.default_password=666666 设置管理员的口令 

修改完后将apache重启,查看phpinfo页面. 

<5>安装phpmyadmin 

修改 C:\Program Files\Apache Group\Apache2\htdocs\phpMyAdmin\config.inc.php  
查找以下这么一段: 
$i = 0; 
// The $cfg['Servers'] array starts with $cfg['Servers'][1]. Do not use $cfg['Servers'][0]. 
// You can disable a server config entry by setting host to ''. 
在这段之后再继续查找: 

找到 $cfg['Servers'][$i]['auth_type'] = 'cookie'; ??nbsp;『 config 』改??nbsp;『 cookie 』或 『 http 』 
找到$cfg['Servers'][$i]['host'] = 'localhost'; 视情况做相应修改 
找到$cfg['Servers'][$i]['user'] = 'root'; 视情况做相应修改 
找到$cfg['Servers'][$i]['password'] = ''; 视情况做相应修改 
找到$cfg['Servers'][$i]['port'] = '3306'; 视情况做相应修改 

PHP 相关文章推荐
ftp类(example.php)
Oct 09 PHP
文章推荐系统(三)
Oct 09 PHP
建立动态的WML站点(三)
Oct 09 PHP
php header示例代码(推荐)
Sep 08 PHP
探讨PHP中OO之静态关键字以及类常量的详解
Jun 07 PHP
php采集文章中的图片获取替换到本地(实现代码)
Jul 08 PHP
Laravel 5 框架入门(二)构建 Pages 的管理功能
Apr 09 PHP
解决ThinkPHP关闭调试模式时报错的问题汇总
Apr 22 PHP
PHP+Mysql基于事务处理实现转账功能的方法
Jul 08 PHP
PHP中spl_autoload_register()函数用法实例详解
Jul 18 PHP
Laravel向公共模板赋值方法总结
Jun 25 PHP
laravel 框架结合关联查询 when()用法分析
Nov 22 PHP
使用Apache的rewrite技术
Jun 22 #PHP
php正则
Jul 07 #PHP
从零开始 教你如何搭建Discuz!4.1论坛
Jul 07 #PHP
php分页函数
Jul 08 #PHP
PHP初学者头疼问题总结
Jul 08 #PHP
最令PHP初学者头痛的十四个问题
Jul 12 #PHP
PHP截取中文字符串的问题
Jul 12 #PHP
You might like
PHP正则表达式之定界符和原子介绍
2012/10/05 PHP
php中json_encode处理gbk与gb2312中文乱码问题的解决方法
2014/07/10 PHP
IIS下PHP的三种配置方式对比
2014/11/20 PHP
浅析Yii2缓存的使用
2016/05/10 PHP
jQuery jqgrid 对含特殊字符json 数据的 Java 处理方法
2011/01/01 Javascript
jQuery操作 input type=checkbox的实现代码
2012/06/14 Javascript
javascript 按键事件(兼容各浏览器)
2013/12/20 Javascript
JavaScript实现自动变换表格边框颜色
2015/05/08 Javascript
js实现文字闪烁特效的方法
2015/12/17 Javascript
不得不分享的JavaScript常用方法函数集(下)
2015/12/25 Javascript
js实现文字无缝向上滚动
2017/02/16 Javascript
JS中使用media实现响应式布局
2017/08/04 Javascript
bootstrap fileinput插件实现预览上传照片功能
2018/01/23 Javascript
vuex state及mapState的基础用法详解
2018/04/19 Javascript
详解关于表格合并span-method方法的补充(表格数据由后台动态返回)
2019/05/21 Javascript
vue+animation实现翻页动画
2020/06/29 Javascript
TensorFlow 合并/连接数组的方法
2018/07/27 Python
Python OpenCV对本地视频文件进行分帧保存的实例
2019/01/08 Python
Python类的继承、多态及获取对象信息操作详解
2019/02/28 Python
Python+OpenCV采集本地摄像头的视频
2019/04/25 Python
Pandas之排序函数sort_values()的实现
2019/07/09 Python
去除python中的字符串空格的简单方法
2020/12/22 Python
详解canvas drawImage()方法绘制图片不显示的问题
2018/10/08 HTML / CSS
英国Iceland杂货店:网上食品购物
2020/12/16 全球购物
高级文秘工作总结的自我评价
2013/09/28 职场文书
舞蹈教育学专业推荐信
2013/11/27 职场文书
一名毕业生的自我鉴定
2013/12/04 职场文书
心碎乌托邦的创业计划书范文
2013/12/26 职场文书
安全生产承诺书范文
2014/05/22 职场文书
淘宝店策划方案
2014/06/07 职场文书
2015年春训学习心得体会范文
2015/03/09 职场文书
大学生村官驻村工作心得体会
2016/01/23 职场文书
大学生入党自我鉴定范文
2019/06/21 职场文书
Matlab如何实现矩阵复制扩充
2021/06/02 Python
详解TypeScript的基础类型
2022/02/18 Javascript
Python OpenCV形态学运算示例详解
2022/04/07 Python