PHP7.2系に更新
Contents
PHP5.6系メンテ終了
三連休にpkg更新後から、自鯖の日報から下記メッセージが出ている。
1 |
Security Support ends on 31 Dec 2018 |
PHPのWebサーバを見にいくと・・・セキュリティ期間終わってるよ。
PHP7.2系導入
ということでPHP7.2系にアップデートを実施する。テスト環境ではうまくいっていたので、アップデートを実施する。
1 2 3 4 5 6 7 8 9 10 |
php72 php72-extensions php72-curl php72-openssl php72-bz2 php72-gd php72-mbstring php72-zip php72-zlib php72-mysqli |
apacheのhttpd,confにも設定を追加。
1 2 3 4 5 6 |
<FilesMatch "\.php$"> SetHandler application/x-httpd-php </FilesMatch> <FilesMatch "\.phps$"> SetHandler application/x-httpd-php-source </FilesMatch> |