CURL installieren - Debian Etch

Mythos

New Member
Bekomme bei nem Skript diese Fehlermeldung:

Fatal error: Call to undefined function curl_init() in /var/www/web1/html/includes/modules/payment/paypal.php on line 119

Kann mir einer verraten wie ich Curl aktivieren bzw installieren kann ?

Habe Debian Etch mit PHP5 am laufen....
 
wenn ich apt-get install php5-curl eingebe,bekomme ich das als ergebniss:


Code:
uhwebxxxxx:~# Building dependency tree... Done
-bash: Building: command not found
uhwebxxxxx:~# E: Couldn't find package php5-curl

Weiss sonst einer was ich tun kann ?
 
Hallo!
Ist aptitude denn konfiguriert? Was sagt aptitude update? Führtst du das ganze als root aus?

mfG
Thorsten
 
Probiere mal ein
Code:
apt-get clean && apt-get update && apt-get install php5-curl
Und diesmal nicht die Ausgabe von apt-get von der Bash ausführen zu lassen :eek:
Ist aptitude denn konfiguriert?
IMHO in diesem Fall eine zu allgemein formulierte Frage ;)
@Mythos: Was steht in /etc/apt/sources.list ?
 
Code:
uhwebxxxxx:~# apt-get clean && apt-get update && apt-get install php5-curl
Reading package lists... Done
Reading package lists... Done
Building dependency tree... Done
E: Couldn't find package php5-curl

Sources.list steht:
Code:
deb http://ftp.debian.org/debian etch main contrib non-free
deb http://security.debian.org/ etch/updates main contrib non-free

deb http://volatile.debian.org/debian-volatile etch/volatile main contrib non-free
deb http://volatile.debian.org/debian-volatile etch/volatile-sloppy main contrib non-free
 
Last edited by a moderator:
@all

Ich bin so ein NOOB, habe irgendwie meine Sources.list geleert und konnte deshalb auch nicht das erforderliche Packet finden.

@HornOx

Ganz grossen DANK an dich !!!
Code:
apt-get clean && apt-get update && apt-get install php5-curl
Brachte das gewünschte Resultat.:D
 
Back
Top