How to upgrade PHP to 7.4 on Centos 7
How to upgrade PHP to 7.4 in centos 7?
Enter the following commands on the terminal to upgrade PHP:
1 . To install the latest PHP 7, you need to turn on EPEL and Remi repository.
[email protected]:~# yum install epel-release
[email protected]:~# yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
2. Next, you need to install yum-util packages
[email protected]:~# yum install yum-utils -y
3. Enable remi repo as per the desired PHP version, for PHP 7.4,
If you want to install PHP 7.3, you can use the following command, [email protected]: ~ # yum-config-manager --enable remi-php73
[email protected]:~# yum-config-manager --enable remi-php74
[email protected]:~# yum update
4. Now install PHP 7.4 with all necessary modules with the command below.
[email protected]:~# yum install php php-mcrypt php-cli php-gd php-curl php-mysql php-ldap php-zip php-process php-ldap
Related Articles