# PHP 7.4 を再インストール               WordPress に必要な MySQL 拡張を利用
 
   ----- 古いphp を削除 ----
 
[root@falcon21 ~]# yum remove php-*
 
 
 
 ------  古いphp module をリセット ----
 
[root@falcon21 ~]# dnf module reset php
 
 
 
  ------  使える php module をリストアップ ---------
 
[root@falcon21 ~]# dnf module list php
メタデータの期限切れの最終確認: 2:47:13 時間前の 2020年12月05日 07時08分18秒 に実施しました。
CentOS-8 - AppStream
Name             Stream               Profiles                              Summary
php              7.2 [d]              common [d], devel, minimal            PHP scripting language
php              7.3                  common [d], devel, minimal            PHP scripting language
 
Remi's Modular repository for Enterprise Linux 8 - x86_64
Name             Stream               Profiles                              Summary
php              remi-7.2             common [d], devel, minimal            PHP scripting language
php              remi-7.3             common [d], devel, minimal            PHP scripting language
php              remi-7.4             common [d], devel, minimal            PHP scripting language
php              remi-8.0             common [d], devel, minimal            PHP scripting language
 
ヒント: [d]efault, [e]nabled, [x]disabled, [i]nstalled
 
 
 
   ----- php remi-7.4 をインストール -------------
 
 
[root@falcon21 ~]# dnf module install php:remi-7.4
インストール済み:
  oniguruma5php-6.9.6-1.el8.remi.x86_64                 php-cli-7.4.13-1.el8.remi.x86_64
  php-common-7.4.13-1.el8.remi.x86_64                   php-fpm-7.4.13-1.el8.remi.x86_64
  php-json-7.4.13-1.el8.remi.x86_64                     php-mbstring-7.4.13-1.el8.remi.x86_64
  php-xml-7.4.13-1.el8.remi.x86_64
 
完了しました!
 
 
           --------  拡張モジュールをインストール ------------
 
[root@falcon21 ~]# dnf install php-gd php-mysql php-mysqli php-zlib php-ssh2 php-ftp php-simplexml php-iconv php-sodium php-openssl 
インストール済み:
  libsodium-1.0.18-2.el8.x86_64             libssh2-1.9.0-5.el8.x86_64
  php-gd-7.4.13-1.el8.remi.x86_64           php-mysqlnd-7.4.13-1.el8.remi.x86_64
  php-pdo-7.4.13-1.el8.remi.x86_64          php-pecl-mysql-1.0.0-0.23.20190415.d7643af.el8.remi.7.4.x86_64
  php-pecl-ssh2-1.2-2.el8.remi.7.4.x86_64   php-sodium-7.4.13-1.el8.remi.x86_64
 
完了しました!
 
 
 
[root@falcon21 ~]# dnf install php-mcrypt php-sockets php-xmlreader php-pcre php-imagick php-zip php-filter php-pdo php-dom php-curl php-exif php-fileinfo php-hash 
インストール済み:
  libmcrypt-2.5.8-26.el8.x86_64                          libzip-1.7.3-1.el8.remi.x86_64
  php-pecl-imagick-3.4.4-10.el8.remi.7.4.x86_64          php-pecl-mcrypt-1.0.4-1.el8.remi.7.4.x86_64
  php-pecl-zip-1.19.2-1.el8.remi.7.4.x86_64
 
完了しました!
 
 
   --------------- WordPress に必要な MySQL 拡張 をインストールできた。-----------
 
[root@falcon21 ~]# php -v
PHP 7.4.13 (cli) (built: Nov 24 2020 10:03:34) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
 
 
--------------------------
 
[root@falcon21 ~]# systemctl restart httpd
 
https://falcon21.space/anpachi/   表示できた。機能しなかった所も回復。
 
https://falcon21.space/phpmyadmin/index.php  も回復。
 
------------------
 
bcmath がインストールされていない
 
[root@falcon21 ~]# dnf install php-bcmath
インストール済み:
  php-bcmath-7.4.13-1.el8.remi.x86_64
 
完了しました!
 
投票数:3 平均点:10.00

 
Back to Top