LoginSignup
1
2

More than 5 years have passed since last update.

PHP5.6のインストール

Posted at

PHPのパッケージインストール

Terminal
$ yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-pecl-xdebug phpMyAdmin

php.iniの設定変更

php.ini
[ 202行目]  short_open_tag = On
[ 366行目]  expose_php = Off
[ 375行目]  max_execution_time = 300
[ 452行目]  error_reporting = E_ALL & ~E_NOTICE
[ 663行目]  post_max_size = 20M
[ 811行目]  upload_max_filesize = 20M
[ 889行目]  date.timezone = "Asia/Tokyo"
[1660行目]  mbsting.language = Japanese
[1667行目]  mbstring.internal_encoding = UTF-8
[1675行目]  mbstring.http_input = UTF-8
[1685行目]  mbstring.http_output = pass
[1693行目]  mbstring.encoding_translation = On
[1698行目]  mbstring.detect_order = auto
[1703行目]  mbstring.substitute_charset = none
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2