Tagged Questions

libcurl is a multiprotocol file transfer library

learn more… | top users | synonyms

19
votes
4answers
10k views

Persistent/keepalive HTTP with the PHP Curl library?

I'm using a simple PHP library to add documents to a SOLR index, via HTTP. There are 3 servers involved, currently: The PHP box running the indexing job A database box holding the data being ...
17
votes
7answers
10k views

Building libcurl with SSL support on Windows

I'm using libcurl in a Win32 C++ application. I have the curllib.vcproj project added to my solution and set my other projects to depend on it. How do I build it with SSL support enabled?
12
votes
5answers
639 views

PHP - curl_exec hangs

I am having a strange problem with the below php function. Unfortunately this is one of those special "Production only" case. function requestPost($url, $data) { set_time_limit(60); ...
11
votes
6answers
2k views

How do I CURL www.google.com - it keeps redirecting me to .co.uk

I am using CURL to check for the existence of a URL (HEAD request) but when I test it with www.google.com, it redirects me to www.google.co.uk - probably because my server is UK-based. Is there a way ...
11
votes
1answer
4k views

Http status code with libcurl?

How do I get the HTTP status code (eg 200 or 500) after calling curl_easy_perform?
7
votes
4answers
11k views

Why can't Python find shared objects that are in directories in sys.path?

I'm trying to import pycurl: $ python -c "import pycurl" Traceback (most recent call last): File "<string>", line 1, in <module> ImportError: libcurl.so.4: cannot open shared object file: ...
6
votes
1answer
71 views

Using LibCURL C++

I've been trying to use LibCURL in C++ for a couple hours now, and it is really getting on my nerves. I have a feeling someone else has had a problem like this before, but I haven't found and posts ...
6
votes
5answers
4k views

pycurl installation on Windows

I am not able to install pycurl on Windows on Python2.6. Getting following error: C:\Documents and Settings\vijayendra\Desktop\Downloads\pycurl-7.19.0>python setup.py install ...
6
votes
4answers
9k views

How do i install pyCurl?

I am VERY new to python. I used libcurl with no problems and used pyCurl once in the past. Now i want to set it up on my machine and dev. However i have no idea how to do it. I rather not DL libcirl ...
5
votes
1answer
735 views

How does one parse HTTP headers with libcurl?

I've been looking around and am quite surprised that there seems to be no means by which one can parse headers generically in libcurl (which seems to be the canonical C library for http these days). ...
5
votes
6answers
4k views

Install Ruby Curb gem in windows XP

I'm trying to do file uploads with ruby 1.8 and it seems like there are no good out-of-the-box solutions. They all seem to need some 3rd party patch or fork of a project to work. I would use mechanize ...
4
votes
3answers
128 views

Using a variable for #define

Libcurl uses the following to define the email recipient: #define RECIPIENT "<bla@bla.com>" But what if I don't want to hard code the recipient? I want a user to be able to supply his/her own ...
4
votes
1answer
278 views

libcurl — Keep Connection “open” to Upload Multiple Files (FTP)

I need to upload directories to a FTP server on my application, and plan to use libcurl. I see there is no direct way to upload a directory with many files, which makes sense to me. I couldn't, ...
4
votes
1answer
408 views

passing credentials in PHP cURL help

I am trying to pass credentials to a website so I can use file_get_contents on it to extract some data but it is not working, I am getting a blank page so any idea what is wrong here? <?php ...
4
votes
4answers
1k views

Show Curl POST Request Headers? Is there a way to do this?

I'm building a Curl web automation app and am having some issue with not getting the desired outcome of my POST action, I am having some trouble figuring out how I can show the full POST request I am ...
4
votes
4answers
430 views

How can I get page's <title> tag's content if it can't be parsed as XML?

I'm using PHP libcurl to load a page. Now I need to get this page's <title> tag's content, and some other information too. I've tried to parse it using SimpleXML, but with no luck, because the page ...
4
votes
2answers
3k views

Building cURL & libcurl with Visual Studio 2010

With the help of question #197444, I have managed to build cURL & libcurl from source on Windows from within the Visual Studio 2010 IDE, OpenSSL 1.0.0, and zlib 1.2.5. The problem I see is that at ...
4
votes
2answers
1k views

How to get HTTP status message in (py)curl?

spending some time studying pycurl and libcurl documentation, i still can't find a (simple) way, how to get HTTP status message (reason-phrase) in pycurl. status code is easy: import pycurl import ...
4
votes
4answers
961 views

PHP Curl POST Problem Causing PHP to use 100% CPU

I'm trying to upload data with POST to my webserver but sometimes cURL just stalls and causes PHP to use 100% CPU indefinitely. I'm using the code below. $curl = curl_init(); curl_setopt($curl, ...
4
votes
2answers
982 views

Django returning HTTP 301?

I have a django view that returns HTTP 301 on a curl request: grapefruit:~ pete$ curl -I http://someurl HTTP/1.1 301 MOVED PERMANENTLY Date: Fri, 16 Oct 2009 19:01:08 GMT Server: Apache/2.2.9 (Win32) ...
4
votes
1answer
1k views

How do you get libcurl libraries to work with InstantRails?

I'm working on a windows machine and trying to get the curb plugin to work, first thing I realized was I needed the curl library installed on my machine, so that's what I'm looking to do. I simply ...
3
votes
2answers
152 views

Why chars become useless? libcurl c++ Utf-8 encoded html;

First of all sorry for my bad english. I have done my research but there isn't any related answers to solve my problem. I have understood and learnt about CodePages Utf 8 and other stuff about in c or ...
3
votes
3answers
93 views

Curl : * Violate RFC 2616/10.3.2 and switch from POST to GET

I'm using curl to post to a script. curl_setopt ($ch, CURLOPT_POST, true); curl_setopt($ch,CURLOPT_URL,$url); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); ...
3
votes
2answers
119 views

how to remove previously set request header referer field from curl handle?

First I initialize curl handle: $ch = curl_init(); Next I set the url and referer headers: curl_setopt($ch,CURLOPT_URL,$url); curl_setopt($ch,CURLOPT_REFERER,$referer); And finally execute ...
3
votes
2answers
222 views

how to solve libCurl linker error in Borland c++ (version 5.02)?

I am new in c/c++.... Recently I am trying to compile a program using libCurl. But it shows me these errors: Error: Error: Unresolved external '_curl_easy_init' referenced from ...
3
votes
2answers
132 views

Why use libcurl?

I'm just learning the basics of socket programming for C++, but I've heard people mentioning libcurl fairly often. What's the advantage of using libcurl instead of programming sockets the traditional ...
3
votes
1answer
741 views

Adding static libcurl to Code::Blocks IDE

I can't figure out how to properly add a static libcurl library to my Code::Blocks IDE. I want it static because then no .dll files, which are not included in Windows by default, are needed during ...
3
votes
1answer
185 views

Weird Characters outputed whenever ptr from CURL_WRITEFUNCTION is printed

I'm having a bit of an issue, here is my code (I'm using C): #include <stdio.h> #include <curl/curl.h> #include <stdlib.h> #include <json/json.h> size_t callback_func(void ...
3
votes
1answer
135 views

Anyone know of a good CURL wrapper for PHP that can be extended upon?

Specifically I am looking for a good OOP PHP CURL class that can be extended to maybe have multi threads and proxy support. Thank You
3
votes
1answer
875 views

libcurl .NET does not want to work on Win64

I wrote multi-threaded FTP uploader on C#.NET using libcurl.NET. Everything works fine on my machine, but when I give application (exe + libcurl.dll + 2 libcurl C# binding DLLs) to my friend who is ...
3
votes
2answers
2k views

pycurl install :( already have min. libcurl version

I'm running python 2.6 on an Intel Mac OS X 10.5 I'm trying to install pycurl 7.16.2.1 (as recommended here http://curl.haxx.se/mail/curlpython-2009-03/0009.html), but for some reason, the ...
3
votes
3answers
963 views

How to limit concurrent connections used by cURL

I made a simple web crawler using PHP (and cURL). It parses rougly 60 000 html pages and retreive product information (it's a tool on an intranet). My main concern is the concurrent connection. I ...
3
votes
3answers
262 views

Finding out where curl was redirected

I'm using curl to make php send an http request to some website somewhere and have set CURLOPT_FOLLOWLOCATION to 1 so that it follows redirects. How then, can I find out where it was eventually ...
3
votes
2answers
4k views

C++ libcurl console progress bar

I would like a progress bar to appear in the console window while a file is being downloaded. My code is this: ...
3
votes
1answer
2k views

Uploading to Amazon S3 using cURL/libcurl

I am currently trying to develop an application to upload files to an Amazon S3 bucket using cURL and c++. After carefully reading the S3 developers guide I have started implementing my application ...
3
votes
3answers
1k views

pycurl: RETURNTRANSFER option doesn't exist

I'm using pycurl to access a JSON web API, but when I try to use the following: ocurl.setopt(pycurl.URL, gaurl) # host + endpoint ocurl.setopt(pycurl.RETURNTRANSFER, 1) ...
3
votes
6answers
2k views

Is including libCurl in an iPhone app store app allowed? Anyone done this?

I would like to use libCurl in an app for communicating with web services, and unfortunately it is not included int he iPhone SDK. Now I've figured out how to include Curl as a static library in my ...
3
votes
2answers
848 views

Cancel libcurl easy handle

Is there an easy way to cancel a curl_easy_perform from another thread?
2
votes
2answers
50 views

Linking libCurl in QT gives a huge list of errors C++

I am trying to link libCurl in QT to a C++ program on Windows 7 x64, but when I try to link libcurldll.a, I get a huge list of errors. I have tried compiling a similar function with GCC g++ ...
2
votes
2answers
76 views

Where is the DNS cache stored for Ubuntu? [closed]

Where can I find the actual DNS cache storage on a Ubuntu file system? I have a PHP script which uses libcurl to crawl several hundred pages on the same domain, and I have it set to use a global DNS ...
2
votes
3answers
121 views

Adding to char array isn't working

I'm trying to read a text file line by line, and add each line to a char array. But the lines aren't added, at all. //This is the default char array that comes with the cURL code. char *text[]={ ...
2
votes
1answer
150 views

cURL using multiple proxies in a chain

Is it possible to chain multiple proxies in a single request using cURL? For example: start cURL -> proxy1 -> proxy2 -> destination address Can this be achieved using cURL?
2
votes
4answers
101 views

valgrind detects memory leaks when using libcurl (no ssl)

In my C program I use some basic functions of libcurl. Today I ran valgrind in order to check if I have memory leaks and valgrind went crazy reporting multiple errors. I tracked it basically down to: ...
2
votes
1answer
47 views

cURL failonerror, fails and doesn't record any error

I'm using the libcurl library in PHP to create a website scraper...the scraper gets hung up randomly, and so I've enabled verbose error logging using CURLOPT_VERBOSE => true, ...
2
votes
1answer
56 views

How to make libcurl look in the Mac Keychain for certificates

My code is trying to access an HTTPS server and it has its own certificate. Example, the IP is "10.0.1.101". If I go through Safari and access "http://10.0.1.101", everything's OK. I do a simple ...
2
votes
1answer
395 views

PyCurl installed but not found

I've been trying to install pycurl in a virtualenv with easy_install, and it appears to install correctly: (xxx) $ easy_install pycurl Searching for pycurl Reading ...
2
votes
1answer
221 views

NDK, JNI and libcurl

I've taken over a project and am having a hard time implementing the SSL side of things. Our application makes use of libcurl to access remote content from a server. The device is looking for a ...
2
votes
1answer
229 views

Using libcurl with libevent

Can anyone show (through code) or explain to me how I might use libevent and curl together in a c program? I'm trying to write a high-performance non-blocking data monitor which needs to upload data ...
2
votes
2answers
204 views

MJPEG streaming with libcurl

I want to receive JPEG images from an IP-camera over HTTP. I am using LIBCURL for this purpose in my C program. The camera returns a single image with the following URL: ...
2
votes
1answer
202 views

Reading all response headers using libCurl in C

How do I read response headers from a response using libCurl in C? The MAN page says this: size_t function( void *ptr, size_t size, size_t nmemb, void *stream) What is the stream here? Do I read ...

1 2 3 4 5 10