Install PHP
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
Check the System Requirements page for your version of PCR-360 to ensure the correct version of PHP is 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)
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
Update the PHP INI
vim /etc/php.ini # Update each line as specified # Set max memory to 1 Gb memory_limit = 1024M # Set the max file upload size to 10 Megabytes upload_max_filesize = 10M # This would need to be set to the timezone in which the Server is located date.timezone = America/Detroit
Install require PHP mods
yum install php-process php-xml php-pecl-apcu php-gd php-intl php-mbstring php-pdo php-soap php-pecl-zip php-fpm # If required install the ldap mod yum install php-ldap # If required install the MySQL mod yum install php-mysqlnd # If required install the OCI8 (Oracle) mod yum install php-oci8
Restart Apache