Tagged Questions
2
votes
2answers
1k views
How can I install php5-curl on Ubuntu 12.04 LTS (GNU/Linux 3.2.0-24-generic x86_64)
I have a working server running Ubuntu 12.04 LTS (GNU/Linux 3.2.0-24-generic x86_64), including apache and php. Now I want to add curl support for php by running this:
apt-get install php5-curl
...
1
vote
3answers
862 views
Curl not found (Glype)
I'm trying to install proxy software called Glype on my server. It continues to tell me that "Glype requires cURL/libcurl". I have the latest version of curl installed. Why might this be happening? ...
1
vote
1answer
348 views
cURL on Linux not compiled, although installed
cURL is not compiled into PHP. I'm running:
[root@vps ~]# cat /etc/issue
CentOS release 5.7 (Final)
Kernel \r on an \m
Then I execute yum install curl and yum install php-curl. Then:
[root@vps ...
2
votes
1answer
852 views
Install php_http on Arch Linux
First I installed the curl extension for PHP:
$ sudo pacman -S php-curl
and
$ grep curl /etc/php/php.ini
extension=curl.so
Then I installed the PHP PEAR
$ sudo pacman -S php-pear
Having now ...