溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

手動編譯PHP

發(fā)布時間:2020-08-02 15:49:12 來源:網絡 閱讀:493 作者:monkeyC 欄目:web開發(fā)

如何將php安裝位apache的模塊



  1. 獲取安裝文件: http://www.php.net/downloads.php  php-5.3.8.tar.gz

  2. tar xf php-5.4.13 -C /usr/local

  3. cd /usr/local/php-5.4.13

  4. ./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql --with-openssl --with-mysqli=/usr/local/mysql/bin/mysql_config --enable-mbstring --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --enable-sockets --with-apxs2=/usr/local/apache2/bin/apxs --with-mcrypt --with-config-file-path=/etc/ --with-config-file-scan-dir=/etc/php.d --with-bz2 --enable-maintainer-zts(最后一項如果是per類型不用加 如果是work或者event就加 httpd -M 可以查看)

   注意:要想使用--with-mcrypt加密功能需要安裝四個包:

                    mhash-0.9.2-6.el5.i386.rpm

                    mhash-devel-0.9.2-6.el5.i386.rpm 

                    libmcrypt-2.5.7-5...

                    libmcrypt-devel....

     注意:rpmfind.net  可以下載各種rpm包   rpm -ivh *.rpm就可以安裝

     注意:將:--with-apxs2=/usr/local/apache2/bin/apxs改為--enable-fpm 表示啟用fpm功能

                  即fastcgi格式

5.cd /usr/local/php...  

  cp php.ini-production 服務器端 /etc/php.ini

6.找到httpd的配置文件   找到AddType 添加兩行

                AddType application/x-httpd-php .php

                AddType application/x-httpd-php-source .phps

7.再找到DirectoryIndex目錄主頁面 

                改為DirectoryIndex index.php index.html

8../apachectl -f /usr/local/apache2/conf/httpd.conf -k start 啟動起來     

9.cd /usr/local/apache2/htdocs    mv index.html index.php

10.vim index.php

        <?php

           $conn=mysql_connect('localhost','root','');

           if ($conn)

                echo "Success...";

           else

                echo "Failure...";   

            ?>

service iptables stop

測試成功

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI