Im a bit of a newbie at server administration and I was wondering if I could get some tips on updating my PHP version.
When I first setup my server, I followed a tutorial and managed to get php 7.2 up and going, but now I want to update the php 7.4 and im not really sure how.
I'm running a CentOS 7 box, and I setup my original PHP using the following commands;
yum install yum-utils
yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
yum-config-manager --enable remi-php72
yum install php72 php-cli php72-php-fpm php72-php-gd php72-php-json php72-php-mbstring php72-php-mysqlnd php72-php-xml php72-php-xmlrpc php72-php-opcache php72-php-zip php72-php-soap php72-php-bcmath php72-php-imagick
systemctl start php72-php-fpm
systemctl enable php72-php-fpm
There were some files edited as well, for instance;
/etc/opt/remi/php72/php.ini
/etc/opt/remi/php72/php-fpm.d/www.conf
Any help would be really greatly appreciated.