2010/08/19

[PHP Install]

# tar zxf php-5.3.3.tar.gz
# cd php-5.3.3
# ./configure \
--with-apxs2=/usr/local/apache2/bin/apxs \
--with-curl=/usr \
--with-pgsql=/usr/local/pgsql \
--with-zlib \
--with-gd \
--with-jpeg-dir=/usr/local/lib \
--with-png-dir=/usr/local/lib \
--with-openssl \
--enable-zip \
--enable-mbstring=all \
--enable-mbregex \
# make
# make install
# cat php.ini-production|\
sed -e "s/^;output_handler =/output_handler = mb_output_handler/" \
> /usr/local/lib/php.ini

# vi /usr/local/apache2/conf/httpd.conf
※追加
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps

※変更
DirectoryIndex index.html

DirectoryIndex index.html index.php

# /etc/init.d/httpd restart

0 件のコメント:

コメントを投稿