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

php的安裝

編輯:關於PHP編程

apache
        tar xf httpd-2.2.19.tar
        cd   httpd-2.2.19  ls
   編譯: ./configure --prefix=/usr/loacl/apache  --sysconfdir=/etc/httpd --enable-ssl --enable-modules=most --enable-mods-shared=most  --enable-so
        make
        make install
       弄一個httpd,
       vi /etc/init.d/httpd  apachectl=/usr/local/apache/bin/apachectl
        httpd=/usr/local/apache/bin/httpd
      cd  /etc/httpd  ls
      vi /etc/httpd/conf/httpd.conf
     啟動   PATH=$PATH:/usr/local/apache/bin
   
         apachectl start
      chkconfig --add httpd
  cp  httpd   /etc/init.d/httpd
  可能會出現不能啟動
   vi /etc/httpd/conf/httpd.conf  PidFile "/var/run/httpd.pid"
   killall httpd
     chkconfig --level 2345 httpd on   
php
    tar xf php-5.3.6.tar
   cd  php-5.3.6
   編譯 ./configure --prefix=/usr/local/php5 --sysconfdir=/etc/php --enable-mbstring --with-apxs2=/usr/local/apache/bin/apxs --with-mysql=/usr/local/mysql
    make      
make install 
 cp php.ini-production /etc/php/php.ini
cd   /etc/php
vi  php.ini
cd  php-5.3.6
cp php.ini-production /usr/loacl/ph5/lib/php.ini
此時還不能和apache一起工作
 vi /etc/httpd/conf/httpd.conf  AddType application/x-httpd-php .php    AddType application/x-httpd-php-source .phps
此時還無法識別index.php
     添加<ifmodule dir_module>directory index.php
          
service httpd start
cd /usr/local/apache/htdocs
<?php
$link=mysql_connect('127.0.0.1','root','');
if ($link)
    echo "sucess"
else
     echo "failure"
?>
本文出自 “linux” 博客

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