Upgrade auf Ubuntu 16.04
und Problem nach der Installation PHP5
.
Installiertes PHP-5 mit folgenden Funktionen:
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install php5.5 # for PHP 5.5
Der Versuch, PHP-Curl zu installieren, funktioniert aber nicht.
sudo apt-get install php5-curl
Fehler: E: Paket php5-curl konnte nicht gefunden werden
php5enmod
Befehl, um es zu aktivieren.Antworten:
In Ubuntu 16.04 ist die Standard-PHP-Version 7.0. Wenn Sie eine andere Version verwenden möchten, müssen Sie das PHP-Paket entsprechend der PHP-Version installieren:
sudo apt-get install php7.4-curl
sudo apt-get install php7.3-curl
sudo apt-get install php7.2-curl
sudo apt-get install php7.1-curl
sudo apt-get install php7.0-curl
sudo apt-get install php5.6-curl
sudo apt-get install php5.5-curl
quelle
Package 'php5-curl' has no installation candidate
. Laufensudo apt-get install php-curl
behoben das Problemphp -version
, um herauszufinden, auf welcher Version von PHP Sie sich befindenDas hat bei mir funktioniert.
quelle
Das funktioniert bei mir:
sudo apt-get install php5.6-curl
quelle
Tun:
Und dann:
quelle
So installieren Sie cURL 7.49.0 unter Ubuntu 16.04 und Derivaten
wget http://curl.haxx.se/download/curl-7.49.0.tar.gz tar -xvf curl-7.49.0.tar.gz cd curl-7.49.0/ ./configure make sudo make install
quelle
Für Benutzer von Ubuntu 18.04 oder PHP 7.2 können Sie Folgendes tun:
apt-get install php7.2-curl
Sie können Ihre PHP-Version
php -v
überprüfen, indem Sie ausführen , um Ihre PHP-Version zu überprüfen und die richtige Curl-Version zu erhalten.quelle
sudo apt-get install php5.6-curl
und starten Sie den Webbrowser neu.
Sie können die Module überprüfen, indem Sie ausführen
php -m | grep curl
quelle