window下配置php5+apache+mysql+phpeclipse
c:/php5)。
? ? ? ? ?2.5找到;extension=php_mysql.dll 将前面的;号去掉即可支持mysql数据库
? ? ? 3、 安装mysql 。点击.msi程序安装,使用默认安装即可。
二、配置apache+php+mysql
? ? ? ?1、 在apache安装目录下的conf文件下。编辑配置文件httpd.conf。?
? ? ? ? ? ? 找到LoadModule配置块,在最后添加
? ?
LoadModule php5_module c:\php5\php5apache2_2.dll? ? ? ? ? ? ? ?后面的为你的php路径名+对应apache版本的支持库名。
? ? ? 2、修改DocumentRoot为你指定的目录。如C:/hello。你在下放c:/hello/index.php文件,当你在地址栏输入localhost/index.php即可直接访问该文件。
? ? ? ?3、 添加识别的扩展名。加入
? ?
AddType application/x-httpd-php .php? ? ?即可。
? ? ? ? 4、默认显示页
? ? ? ? 找到DirectoryIndex index.html在后面添加上 index.php即可。如此,当你在地址栏输入localhost/index.php即可直接访问该到index.php,同样你也可以直接输localhost,就能访问到index.php页面。
?
三、 配置eclipse php环境
? ? ? ?下载phpeclipse插件。解压后放入eclipse对应目录。重启eclipse进入即可。
? ? ? ? 点windows-preferences 找到phpeclipse选项,将其中php external tools 中选项改为C:\php5\php.exe
? ? ? ? 将其中apache设置中apache项设为:..\Apache2.2\bin\httpd.exe
? ? ? ? ?同理设置http.conf
? ? ? ? ?该步具体可参考:http://wenku.baidu.com/view/9b7fb69b51e79b896802260e.html
?
(完)
?