Ubuntu 22.04: Install old PHP Version without Apache
2025-05-03 von Mario
Install old PHP Version without Apache.
sudo apt update sudo apt upgrade sudo add-apt-repository ppa:ondrej/php -y sudo apt install php7.4-cgi sudo apt install php7.4-{cli,common,curl,zip,gd,mysql,xml,mbstring,json,intl}
If you no longer need the library on your System, it can be removed as follows.
sudo apt autoremove --purge php7.4 sudo add-apt-repository --remove ppa:ondrej/php -y
Kategorie: IT Schlagwörter: Apache, PHP, Ubuntu