PHP教程:Linux下PHP伺服器的安裝與配置

來源:互聯網
上載者:User

1、#cp httpd-2.0.47.tar.gz 到/usr/local/
2、#tar zxvf php-4.3.3.tar.gz
3、#cd php-4.3.3
4、#./configure --with-mysql --with-apxs2=/usr/local/apache/bin/apxs
   #./configure -with-apache=/path/to/apache/dir -with-mysql=/usr/local/mysql
5、#make
6、#make install  (一邊等待一邊保佑吧)
7 、#cp php.ini-dist /usr/local/lib/php.ini
8 、#vi /usr/local/apache2/conf/httpd.conf
9 、在AddType application/x-tar.tgz下面,添加以下內容:
AddType application/x-httpd-php .php
LoadModule php4_module /var/www/modules/libphp4.so (如果沒有的話加上)
10 、#vi /usr/local/apache2/htdocs/test.php
<?
echo phpinfo();
?>
11 、瀏覽http://ip/test.php。出現php資訊。恭喜這一步成功了。

PHP和Apache安裝後的基本配置
1.Apache的配置
Apache的設定檔是/usr/local/apache2/conf/httpd.conf,編輯httpd.conf 檔案,在檔案結尾加上以下兩行:
LoadModule php4_module modules/libphp4.so
AddType application/x-httpd-php .php .php3
同時修改DirectoryIndex為:

DirectoryIndex index.htm
DirectoryIndex index.html
DirectoryIndex index.php
DirectoryIndex index.php3
DirectoryIndex index.php4

Apache的配置內容比較豐富,其它Apache相關配置請參考Apache的相關文檔。
2.PHP的配置
Apache的設定檔是/usr/local/lib/php.ini,編輯php.ini檔案來配置PHP的選項。特別注意的是,安裝完成後register_globals變數預設設定為Off,需要將它改成On。否則會出現PHP讀不到post的資料的現象。
zlib.output_compression=On
register_globals=On
其它PHP的選項請參考相關文檔。
3.測試
可以寫一個簡單的PHP檔案來測試安裝,檔案包含下列一行:
將其儲存為/usr/local/apache2/htdocs/info.php,啟動Apache,然後在瀏覽器中瀏覽。



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.