cURL is an HTTP client library and command line tool.
Questions tagged [curl]
646 questions
0
votes
1 answer
Installing CURL on Ubuntu Karmic
Trying to get this up and running:
https://github.com/cloudnull/massupload
I have everything except CURL installed and when I attempt to, it fails with the following:
Reading package lists... Done
Building dependency tree
Reading state…

Racertim
- 105
- 3
0
votes
1 answer
Post compiled php 5.4 curl installation
I recently compiled php 5.4 from source. I have Centos 6. I used this configuration:
# ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql
# make
# make install
# cp php.ini-dist /usr/local/lib/php.ini
I realize now that I do not have…

user140657
- 1
- 1
- 1
0
votes
2 answers
What is the correct dependency rpm for libcurl.so.3
So I have a failed dependency and I am having trouble downloading the correct rpm. The error is libcurl.so.3()(64bit) is needed. I have Centos 6 and I have looking in this site for the correct rpm. The problem though is, and this is another place…

SephMerah
- 159
- 1
- 2
- 8
0
votes
1 answer
How do I download all the files in a directory with cURL?
I am using cURL to try to download all files in a certain directory.
Here's what my list of files looks like:
I have tried to do in bash script: iiumlabs.[].csv.pgp and iiumlabs* and I guess cURL is not big on wildcards.
curl -u login:pass…

Alex Gordon
- 455
- 3
- 14
- 31
0
votes
1 answer
curl on Tomato USB - SSL CA issue
I installed optware and I have curl available. I'm trying to get it to notify me (through pushover) when the router is rebooted.
curl \
-F "token=" \
-F "user=" \
-F "message=ASUS Router WAN Up"…

Cade Roux
- 375
- 2
- 5
- 18
0
votes
1 answer
PHP Script Issue While Running
I have the following PHP script for in-app purchase verification for an iPhone app. However, the script (from chrismaddern) runs effectively on localhost (mac) and does not run or give any output on my actual server (Ubuntu 12).
Here's the…

proctr
- 103
- 3
0
votes
1 answer
cURL newest version on Debia Squeeze
Why Debian Squeeze repositories points to cURL version 7.21.0 which is from June 2010 and not the version 7.26.0 which is from May of this year(cURL Changelog)??
I want to update to the version 7.26 to avoid NTLM bugs, can I do this or it will crash…

DontVoteMeDown
- 113
- 1
- 6
0
votes
1 answer
Error on installing Curl in Red Hat
Got this error when i installed curl in my Red Hat Enterprise Linux Server
../lib/.libs/libcurl.so: undefined reference to `ERR_remove_thread_state'
collect2: ld returned 1 exit status
make[2]: *** [curl] Error 1
make[2]: Leaving directory…

user1149244
- 121
- 7
0
votes
1 answer
How to upgrade php curl on Ubuntu 10.04
I have a web service on 64bit AWS/ubuntu 10.04 machine. Current php ver PHP Version 5.3.2-1ubuntu4.15. Current curl ver: 7.19.7
This Curl version has a memory leak and I need to upgrade to V 7.25.0
apt-get says my version is the latest, On curl…

Niro
- 1,401
- 4
- 20
- 36
0
votes
1 answer
cpanel cronjob curl increase file size
I created a bash script to run as a cronjob with Cpanel:
--------------content of cron.sh---------------------
#!/bin/bash
curl http://website.com/1.gif >> /home/myuser/public_html/directory/1.gif
------------ end of content…

Antonio Colella
- 19
- 2
0
votes
3 answers
I would like to know the equivalent command to curl in Solaris
I would like to know equivalent command to curl in Solaris. As in Linux, the curl command is used to find the website activity.
Kindly let me know command to check website in Solaris.

uma maheshwar
- 1
- 1
- 1
- 1
0
votes
2 answers
Curl and Wget returns different response code
I am trying to wget a link, this wget works fine on my local machine but it doesn't do so on the server.
i tried to check the response header and i got the following on my local laptop
curl -I…

Alaa Alomari
- 638
- 6
- 19
- 37
0
votes
1 answer
PHP, Apache and curl: Differences between Windows and Linux?
I'm trying to run my php App on Ubuntu Server 11.10. This App works fine under Apache + PHP in windows. I have other applications that I can simply copy&paste between the 2 OS and they work on both. (These don't use cURL).
However this one uses the…

beginner_
- 191
- 1
- 8
0
votes
2 answers
Does PHP script itself count as a process?
My server has a limited number of concurrent processes (20) it can handle. To make sure I don't exceed I need to understand:
When a user is waiting for a PHP script to finish loading, does the entire waiting duration count as one process?
Most of…

Hope4You
- 165
- 3
- 12
0
votes
1 answer
curl installation and upgrade
On a centos 5.7 machine we had curl 7.15 installed . We also have PHP installed in it as some of the PHP libraries are linked to curl.
We wanted to upgrade curl to 7.19 but yum update was failing .
Then we manually installed 7.19 with the…

Vidya
- 347
- 1
- 6
- 19