Hello everyone, I can’t install PHP 7 version on Ubuntu 14.04, I found the instructions, but half of those commands don't work, for example,
sudo add-apt-repository ppa:ondrej/php Can anyone give instructions? Thank.
Hello everyone, I can’t install PHP 7 version on Ubuntu 14.04, I found the instructions, but half of those commands don't work, for example,
sudo add-apt-repository ppa:ondrej/php Can anyone give instructions? Thank.
If you have a clean Ubuntu, then:
sudo apt-add-repository ppa:ondrej/php sudo apt-get update sudo apt-get install php7.0 If PHP is installed (for example php5), then:
sudo apt-get update sudo apt-get purge php5-common -y sudo apt-get install php7.0 php7.0-fpm php7.0-mysql -y sudo apt-get --purge autoremove -y Source: https://ru.stackoverflow.com/questions/516456/
All Articles