Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Note: For customers running PCR-360 Versions 2018.1 through 2020.2, PHP 7.2 is required.  For customers running PCR-360 Versions 2020.3 through 2020.4, PHP 7.2 or PHP 7.4 may be installed. For customers running PCR-360 Versions 2021.1 or later, PHP 7.4 is required

Info


Be sure to check Check the System Requirements page for your version of PCR-360 to ensure the get the correct version of PHP Installedis installed:

System Requirements

Below is an example using PHP 7.2.

This may not be the verson of PHP needed.

Checking the system requirements is a must.

These examples must be modfied to the correct version for live application.

Install PHP 7.2 (PCR-360 Versions 2018.1 through 2020.2), Or PHP 7.4 (Versions 2020.3 and later)

Code Block
yum remove php*


# CentOS 7 (RHEL7)
yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm http://rpms.remirepo.net/enterprise/remi-release-7.rpm yum-utils
# CentOS 8 (RHEL8)
yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm http://rpms.remirepo.net/enterprise/remi-release-8.rpm yum-utils
#RockLinux (RHEL9) 
yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm http://rpms.remirepo.net/enterprise/remi-release-9.rpm yum-utils


# <= 2020.2 
# CentOS 8 
yum module enable php:remi-7.2
yum module install php:remi-7.2
# CentOS 7
yum-config-manager --enable remi-php72

# 2020.3+
# CentOS 8 
yum module enable php:remi-7.4
yum module install php:remi-7.4
# CentOS 7
yum-config-manager --enable remi-php74


yum install php

...