AB Lab

abgata20000 blog.

最新版PHPをインストール

インストール可能なバージョンの確認

1
sudo yum info --enablerepo=remi php

※執筆時点では5.4.19

利用しそうな依存ライブラリも一緒にインストール

1
sudo yum --enablerepo=remi install -y php php-devel php-mysql php-mbstring php-gd php-pear httpd-devel

バージョンの確認

1
php -v

設定ファイルを変更

1
2
cp /etc/php.ini /etc/php.ini.org
vim /etc/php.ini
/etc/php.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error_log = /var/log/php.log
error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED
display_errors = On
mbstring.language = Japanese
expose_php = Off
date.timezone = Asia/Tokyo
max_execution_time = 300
magic_quotes_gpc = Off
mbstring.internal_encoding = UTF-8
mbstring.http_input = auto
mbstring.http_output = pass
mbstring.detect_order = auto
;mbstring.substitute_character = none;

max_file_uploads = 100
post_max_size = 100M
upload_max_filesize 100M

apache再起動で反映

1
service httpd restart