Linux學習筆記:LAMP 4 安裝配置php

來源:互聯網
上載者:User

1.擷取安裝檔案: http://www.php.net/downloads.php  php-5.3.8.tar.gz

  擷取安裝php需要的支援檔案:http://download.csdn.net/download/netlong339/1351852     libxml2-2.6.32.tar.gz

2.安裝libxml2

1 tar zxvf libxml2-2.6.32.tar.gz 2 cd libxml2-2.6.323 ./configure --prefix=/usr/local/etc/libxml2 4 make5 make install

如果安裝成功以後,在/usr/local/etc/libxml2/目錄下將產生bin、include、lib、man和share五個目錄。在後面安裝PHP5原始碼包的配置時,會通過在configure命令的選項中加上"--with-libxml-dir=/usr/local/etc/libxml2"選項,用於指定安裝libxml2庫檔案的位置。

3.安裝php5

#tar zvxf php-5.3.8.tar.gz #cd php-5.3.8#./configure --prefix=/usr/local/etc/php --with-mysql=/usr/local/etc/mysql --with-apxs2=/usr/local/etc/apache/bin/apxs --with-libxml-dir=/usr/local/etc/libxml2#make #make install 

4.重新設定apache2讓他支援php

  • 配置 httpd.conf 讓apache支援PHP:

  # vi /usr/local/apache/conf/httpd.conf

  找到 AddType application/x-gzip .gz .tgz 在其下添加如下內容

  AddType application/x-httpd-php .php      (.前面有空格)

  AddType application/x-httpd-php-source .phps        (.前面有空格)

  • 然後CPOPY PHP的設定檔

  cp php-5.3.8/php.ini.dist /usr/local/php/lib/php.ini 

    (如果沒有php.ini.dist 則把php.ini-development php.ini-production中的任何一個重新命名為php.ini.dist即可。)

  修改php.ini檔案 register_globals = On

  • 重啟apache

  service apache restart

5.測試php是否成功安裝

寫一個php測試頁info.php,放到apache2/htdocs中。

<?php 

 phpinfo(); 

?>; 

在瀏覽器中輸入:伺服器位址/info.php

如果能正常顯示出php的資訊,則說明Apche+Mysql+PHP安裝成功!

來源:http://www.cnblogs.com/fly1988happy/archive/2011/12/14/2288096.html

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.