Answers for "how to install php5.6.19 httpd centos"

PHP
1

install php7.4 in linux server

For install all important php 7.4 extensions
apt install php7.4-common php7.4-mysql php7.4-xml php7.4-xmlrpc php7.4-curl php7.4-gd php7.4-imagick php7.4-cli php7.4-dev php7.4-imap php7.4-mbstring php7.4-opcache php7.4-soap php7.4-zip php7.4-intl -y
Posted by: Guest on July-10-2020
1

centos update php 7 to php 8

// Thêm kho lưu trữ remi
yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
yum install -y https://rpms.remirepo.net/enterprise/remi-release-7.rpm

// Cài đặt PHP 8.0
yum install -y --enablerepo=remi-php80 php php-cli
yum install -y yum-utils
yum-config-manager --enable remi-php80
yum install -y php php-cli
php -v
Posted by: Guest on November-01-2021

Code answers related to "how to install php5.6.19 httpd centos"

Browse Popular Code Answers by Language