ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 리눅스 PHP 설치
    PHP 2011. 6. 21. 22:18

    다운로드
    http://php.net/downloads.php

    압축풀기
    tar -zxvf php-5.3.6.tar.gz

    mysql 용 PHP configure
    # ./configure \
     --with-apache-install=/service/httpd \
     --with-apxs2=/service/httpd/bin/apxs \
     --with-config-file-path=/service/httpd/conf \
     --with-mysql=/service/httpd/mysql \
     --with-mysqli=/service/mysql/bin/mysql_config \
     --with-gd \
     --with-mcrypt=/usr/lib \
     --with-jpeg-dir=/usr/lib \
     --with-png-dir=/usr/lib \
     --with-zlib-dir=/usr/lib \
     --with-freetype-dir=/usr/lib \
     --enable-gd-native-ttf \
     --enable-sigchild \
     --disable-debug \
     --enable-mbstring

     --with-gif-dir=/usr/lib \
     --with-tiff-dir=/usr/lib \
     --with-language=korean \
     --with-charset=euc_kr \
     --enable-modules=so \
     --enable-freetype-4bit-antialias-hack

    # make; make install

    php.ini 파일 apache 폴더로 복사

    httpd.conf 파일에서 아래 수정
    AddType application/x-httpd-php .php .phtml
    AddType application/x-httpd-php-source .phps
    DirectoryIndex index.html index.htm index.php index.php3 index.cgi

    아파치 서비스 재시작

    출처 : http://www.linux.co.kr/blog2/acacia07/entry/php-oracle-%EC%97%B0%EB%8F%99


    php mysqli 확장설치 
    http://smilemoon.kr/90103759604





     

Designed by Tistory.