Last active
September 7, 2018 03:07
-
-
Save kangmasjuqi/be835c07360bb435780933a861334eed to your computer and use it in GitHub Desktop.
PHP Upgrade to 7.x Version (on CENTOS)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd ~ | |
curl 'https://setup.ius.io/' -o setup-ius.sh | |
sudo bash setup-ius.sh | |
sudo yum remove php-cli mod_php php-common | |
sudo yum install mod_php70u php70u-cli php70u-mysqlnd | |
systemctl restart httpd | |
#ref : https://www.digitalocean.com/community/tutorials/how-to-upgrade-to-php-7-on-centos-7 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment