程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 三步解決搭建PHP環境問題

三步解決搭建PHP環境問題

編輯:關於PHP編程

進行正確的搭建

搭建PHP環境一、安裝Apache 2.2.x

下載地址:http://httpd.apache.org/

一路回車即可安裝。 注意安裝完成後要執行:D:Apache2.2bin>httpd -k install

假設,安裝在D:盤下。

Installing the Apache2.2 service
The Apache2.2 service is successfully installed.
Testing httpd.conf....
Errors reported here must be corrected before the service can be started.
httpd: Could not reliably determine the server's fully qualified domain name, us
ing 192.168.28.100 for ServerName

執行後,在桌面右下腳打開Monitor Apache Servers 並啟動Apache 2.2服務

搭建PHP環境二、安裝PHP

下載地址:http://cn2.php.net/get/php-4.4.9-Win32.zip/from/a/mirror

下載 php-5.2.6-Win32.zip

(1)將PHP文件解壓到一個目錄下,目錄地址為 "D:php"。
(2)將PHP目錄(D:php)下的php.ini-dist復制到windows(有的系統是winnt目錄)目錄下,並改名為php.ini。
(3)復制D:php目錄下的所有dll文件到windows的系統文件夾裡,即:C:windowssystem32。

注意:如果不想復制(3)的文件,可以把 D:php 目錄加入系統PATH變量中

搭建PHP環境三、Apache 與 PHP 的整合

開始菜單的程序的Apache HTTP Server 2.2.4,再進入下一級的Configure Apache Server,這時可以看到那個Edit the Apache httpd.conf Configuration File。點一下。
查找:
#LoadModule ssl_module modules/mod_ssl.so
在下面添加:
LoadModule php5_module "d:/local/php/php5apache2_2.dll"
查找:
DirectoryIndex index.html
替換:
DirectoryIndex index.html index.htm index.php default.php
查找:
AddType application/x-gzip .gz .tgz
在下面添加:
AddType application/x-httpd-php .php
Apache配置結束,現在開始進行PHP配置,用Notepad打開C:windowsphp.ini。
查找:
extension_dir = "./"
替換:
extension_dir = "d:/local/php/ext/"
查找:
upload_max_filesize = 2M
這裡的意思為修改上傳文件的最大限制,默認為2M,可以改為6M。
查找:
;extension=php_mbstring.dll
將前面的;號去掉。
查找:
;extension=php_gd2.dll
將前面的;號去掉。
查找:
;extension=mysql.dll
將前面的;號去掉。
查找:
;date.timezone =
替換:
date.timezone = PRC
文件修改完畢,此時,雙擊右下角任務欄的Apache圖標,彈出的窗口中,點Stop停止服務,等停止後再點Start啟動服務,此時,可以看到其窗口的狀態欄中會顯示:"Apache/2.2.4 (Win32) PHP/5.2.0"。搭建PHP環境的配置全部完成。


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved