is refer to multiple synchronous curl transfers

learn more… | top users | synonyms

2
votes
3answers
164 views

How can PHP do centralized curl_multi requests?

I currently have a website written in PHP, utilizing the curl_multi for polling external APIs. The server forks child processes to standalone from web requests and is working well, but it is somewhat ...
1
vote
1answer
16 views

CURLOPT_TRANSFER_ENCODING with Net::Curl::Eazy in perl

I'm using Net::Curl::Easy in perl. My requirement is to send HTTP Request in zip formate. I tried using http option CURLOPT_TRANSFER_ENCODING [Link] But perl returns with error: Bareword ...
-2
votes
1answer
60 views

How to write a bot that does not consume much RAM?

I have a web bot and It consumes my memory so much, after a time, memory usage hits to 50%, and the process gets killed; I have no idea why memory usage is increasing like that, I did not include ...
0
votes
0answers
31 views

Libcurl NXDOMAIN causes timeout

Libcurl in my app seems to have trouble with non existing domains, as it stays a minimum 7-20s on "NXDOMAIN" requests (which seems to match CURLOPT_CONNECTTIMEOUT). here is the pmp (poore man's ...
2
votes
2answers
191 views

Arduino client + PHP cURL server executing command twice

I have this project I'm doing for work in which I command several Arduino (Arduino core + ENC28J60 Ethernet + x4 Relay actuator) modules from a single PHP server to activate a relay on any of the ...
1
vote
0answers
207 views

curl_multi_init with different proxy for each handle?

i want to write a script using curl_multi_init() but i must have to specify the curl_setopt() with my proxy only once and not for each handle, there is a way to solve this with different proxy for ...
0
votes
1answer
57 views

Random 500 errors in a multi CURL request

I am trying to get some hal+json data from a web service through a curl_multi to fill in a Bootstrap Typeahead. Every time I run this code, some of my requests in the curl_multi will be 500, and some ...
1
vote
1answer
94 views

Scale multi request to different services

I have a service, where I need to ask 40 external services (API's) to get information from them, by each user request. For example one user is searching for some information and my service is asking ...
0
votes
1answer
38 views

Returning http status code from mutiple cURL in PHP

I am trying to return two http status codes from the header information from two parallel cURL requests my script makes. So far my script is as below, the print_r() at the end prints out: Array ( [0] ...
0
votes
1answer
194 views

understanding php curl_multi_exec

I'm trying to understand curl_multi_exec. I've copied a piece of the manual example here. So I'm wondering, how does it work? The first loop sends the http request I guess? But it then it is followed ...
1
vote
1answer
283 views

curl_multi_select always blocking for time out value

When running Example #1 from PHP on Windows XP PHP 5.3.5 the curl_multi_select() line will always block for the duration of the timeout specified (if blank it will block for 1 sec, if I specify 5 sec ...
0
votes
0answers
236 views

Unknown SSL protocol error in connection to android.googleapis.com:443 when trying to connect to gcm using curl_multi

I am using php curl_multi function to send a push notification to android device through gcm server. I am able to send a message to around 50000 devices without any problem. However, if I increase the ...
0
votes
0answers
93 views

curl_multi_perform resolving host names error

I use libcurl to get very many html-pages via multi interface. And the problem is that when I add to CURLM* handle a lot of easy handles (for example, some thousands), or create many threads to divide ...
5
votes
1answer
3k views

How can I use cURL to open multiple URLs simultaneously with PHP?

Here is my current code: $SQL = mysql_query("SELECT url FROM urls") or die(mysql_error()); //Query the urls table while($resultSet = mysql_fetch_array($SQL)){ //Put all the urls into one variable ...
1
vote
1answer
123 views

why curl_multi does not work correctly in my localhost?

I use a php function to return the status of more than 1000 websites (i.e. website is up or down). public function curlCheck($nodes) { $results = array(); $node_count = count($nodes); ...
0
votes
0answers
78 views

multi curl with https and http

I have two url one is http and other is https. I am adding both of them to curl multi-interface handle. As soon as I get response from any of the url, I can go ahead and do the cleanup. In the ...
0
votes
1answer
124 views

Multiple and Growing Outbound CURL Request

Multi Outbound Request - Curl Here's the problem, I have several clients I have to CURL outbound requests to. Say for instance I currently have 20 clients and I send around 100~1000 requests per ...
0
votes
0answers
102 views

Trouble with PHP cURL proxy and post

I'm making a script that can check if accounts are still valid and working. I'm using this function : function crack() { $url = 'http://127.0.0.1/trying.php'; $agent= 'Mozilla/5.0 (Windows NT ...
0
votes
0answers
133 views

PHP cURL user agent is breaking script when accessing google on https

I've been at this all day. I'm using a relatively popular script on github to perform multi curl with PHP called EpiCurl However, for some reason it is breaking when I try to pass a user agent into ...
0
votes
1answer
199 views

Get cUrl to preemptively send Authorization header for DIGEST authentication in PHP

We have a PHP page (actually a WordPress plugin) which makes calls to a REST API with DIGEST authentication. The curl handle is created on a per request basis, given authorisation credentials and ...
0
votes
0answers
61 views

CURL_MULTI WITH THE SAME HANDLER

I’m using Curl for PHP for a while but now I’m facing a case that I don’t know how to solve. I need to do more than 400 request from the same page. In other cases I have used curl_multi and it works ...
0
votes
1answer
229 views

How to check if multi_curl is supported on PHP?

I have a piece of PHP code that uses cURL to do post requests, it uses the curl_multi_* functions for performance. It all works fine on my hosted PHP server. But it fails on my WAMPServer at ...
0
votes
2answers
1k views

PHP - How to check URLS for 404/Timeout?

Here is my structure: MYSQL: Table: toys ---> Column: id, URL. How do I get my PHP script to check all of those URLs to see if they are alive or have page 404's? Try not to echo or diplay the results ...
0
votes
1answer
450 views

CURL testing many ip addresses of a url in the same time: Response PROBLEM

Am making a curl request on an URL. this URL is hosted by many servers ==> many ip addresses. Imagine "www.example.com" is hosted by 192.168.60.31 198.166.15.15 217.15.74.1 here is the test ...
0
votes
0answers
135 views

PHP: How to kill off any pending curl_multi requests in RollingCurl library

I am using a slightly modified version of http://code.google.com/p/rolling-curl/ My question is similar to this: http://code.google.com/p/rolling-curl/issues/detail?id=25 Basically, I am doing a ...
0
votes
0answers
89 views

curl_multi_exec - Stop all calls when one completes

Is it possible to cancel all running calls in curl_multi when one completes successfully? It seems as though curl_multi waits until all processes have finished before finishing the script, but this ...
0
votes
1answer
251 views

Optimize PHP CURL for web crawler

I am trying to code a crawler based on PHP with curl. I have database of 20,000-30,000 URLs that I have to crawl. Each call to curl to fetch a webpage takes around 4-5 seconds. How can I optimize ...
1
vote
0answers
116 views

PHP & curl_multi and CURLOPT_FILE = No File Contents

when processing calls with the CURLOPT_FILE (sending contents to a file) in parallel (using curl_mult_exec) the file contents when the contents is small (not sure exact size but in this case its 100 ...
2
votes
1answer
333 views

Parsing response from the WSDL using PHP

I'm very sorry if I made a wrong title, I'm not familiar with SOAP response and types of it. But I guess it's a WSDL response, at least I got it from WSDL link... I have a following url ...
0
votes
1answer
107 views

PHP - stop all curl_multi requests at a certain point

I have a php script that uses curl_multi to make multiple requests at the same time. It accesses several of my sites in search for a defined value. Now the problem that I have is that the curl ...
1
vote
2answers
720 views

Is this the best way to make an API request using PHP CURL?

I have a site that has a simple API which can be used via http. I wish to make use of the API and submit data about 1000-1500 times at one time. Here is their API: http://api.jum.name/ I have ...
0
votes
3answers
222 views

PHP cURL setting a delay after 10 requests

I am using PHP and cURL to scrape the html of a single websites pages. Through experimentation I have discovered that my code only works when I specify 10 URLS or less in the $nodes array(see code ...
0
votes
0answers
40 views

Is there any recommanded number of handles for curl_multi

The title tells all the story but anyway a little more elaboration doesn't hurt when people use curl_multi the number of handles changes between 5 up to 200 most of the time it's between 15-30 so i ...
2
votes
2answers
938 views

AWS S3 batch upload from localhost php error

I am trying to batch/bulk upload from localhost (xampp) to my S3 bucket. It seems to work for about 6 items then i get an error message: The cURL error says Failed sending network data. from ...
0
votes
1answer
225 views

How to know which URL failed in curl_multi_exec?

I wrote a class to make it easier to use multi cURL requests I want to log errors when I get a 404 error or any other error. I already have CURLOPT_FAILONERROR set to true. I'm currently using ...
0
votes
0answers
152 views

Connection time-out using rolling-curl

I'm implementing a rolling curl which gives the error "connection time-out". The curl handlers to the same domain in the same script before the rolling curl go fine. $options = array(); $rc = new ...
0
votes
0answers
413 views

Php curl_multi_info_read curl_getinfo. Warning: supplied argument is not a valid cURL handle resource

Part of my code: do{ curl_multi_exec($mh, $running); $done = curl_multi_info_read($mh); $info = curl_getinfo($done['handle']); while($running > 0); This code results warning ...
0
votes
0answers
102 views

C++: curl_multi is working slow some times, because one connection is not returning

i use the curl-multi-interface in my application (c++) to do multiple requests at a time. If i only add like 10 easy handles, the curl-multi-interface makes my application work much faster. The ...
1
vote
0answers
243 views

how to run multi threaded curl script from terminal?

I have used a multi curl library for PHP that facilitates fetching multiple pages in parallel (basically an easy to use API). My Scenario: Fetch user data from API , process it and store results. ...
0
votes
1answer
85 views

What is the most efficient way to execute a number of php scripts simultaneously?

Currently I'm using multi_curl to execute php files simultaneously on my own server. It seems that it is not a very efficient way as the server gets overloaded when 200+ scripts need to be executed at ...
1
vote
1answer
324 views

CURLINFO_EFFECTIVE_URL for curl_multi

I'm using PHP's CURL MULTI to download an array of resources in parallel, and I want to get the last effective URL from each of the resources (not just the last one). Basically, I'm looking for: ...
0
votes
1answer
176 views

Why is there a delay in script execution when calling many php scripts simultaneoulsy using multi_curl?

I have a script that calls around 40 individual php scripts (located on the same server) simultaneously. I notice that there is a delay in the start of each individual php script of up to 5 seconds. ...
0
votes
1answer
273 views

Making CURL multi requests to the same server as slow as single request

I am using a good Multi CURL interface called Rolling CURL http://code.google.com/p/rolling-curl/issues/detail?id=20 It works fine, for example it gets data from 20 sites in around 3 seconds. The ...
2
votes
2answers
2k views

PHP Codeigniter curl_multi_init error

This is my code: class facebookConnection { // Allow multi-threading. private $_mch = NULL; private $_properties = array(); function ...
2
votes
1answer
191 views

curl_multi_exec returning empty arrays

I have been using the following function to make asynchronous curl posts: function curl_post_multi($urls){ $curl_arr = array(); $num_urls = count($urls); $mh = curl_multi_init(); ...
2
votes
1answer
201 views

Run parallel handler of curl with curl_multi_exec

Why in this piece of code I need call 2 times curl_multi_exec function. On first loop I'm executing the curl_multi_exec handler to run sub handler. When CURLM_CALL_MULTI_PERFORM is different from ...
0
votes
0answers
160 views

Save images in loop with curl_multi from remote url with fopen

The current php code works - but since I'm new to PHP I was hoping to get feedback. I'm saving remote images (after checking the cache on my server) and then displaying them to the browser. I added ...
1
vote
0answers
160 views

Broken link check while initiating cron-multi

This code checks broken link of a page by initiating multiple cron. However it is not identifying the correct links which are broken . It always returns 0 broken links though there are broken links ...
1
vote
2answers
628 views

Why are curl_multi_select and curl_multi_info_read contradicting each other?

When I run the below code it seems to me curl_multi_select and curl_multi_info_read are contradicting each other. As I understand it curl_multi_select is supposed to be blocking until curl_multi_exec ...
1
vote
1answer
391 views

PHP curl multi on passworded site

I'm currently using the following (old) code to log into a site... public function login() { $url1 = 'https://...'; /* Initial page load to collect initial session cookie data */ $url2 = ...

1 2