is refer to multiple synchronous curl transfers
1
vote
1answer
27 views
PHP cURL multi handling causing random connection issues between servers?
I have a website that tracks individual player's data for an online game. Everyday at the same time a cron is run that uses cURL to fetch each player's data from the game company's server (each player ...
1
vote
1answer
19 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 ...
2
votes
3answers
167 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 ...
0
votes
0answers
32 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 ...
0
votes
1answer
58 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 ...
0
votes
1answer
39 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] ...
2
votes
2answers
198 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 ...
0
votes
1answer
203 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 ...
0
votes
0answers
249 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
97 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 ...
1
vote
1answer
124 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
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
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
137 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
202 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
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
91 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
339 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
3answers
223 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 ...
0
votes
1answer
231 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
154 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
421 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 ...
2
votes
2answers
941 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
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
86 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
332 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:
...
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
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
230 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
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
1answer
204 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 ...
2
votes
1answer
192 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();
...
0
votes
0answers
161 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 ...
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 ...
0
votes
2answers
421 views
How to NOT return data from curl-multi and reduce CPU usage?
I have a script in php that uses multi curl.
A general multicurl request consists of 50 individual curl handles. It takes some time for each request to return, so my script should just wait until ...
0
votes
1answer
294 views
Why is my CPU high when using many CURL requests which are waiting for response?
I have a large php script that uses both curl and multi- curl requests to my own server and other servers. Besides that it does a number of database requests and other operations on my own server.
...
0
votes
1answer
787 views
PHP: Parallel cURL Performance - RollingCurl vs ParallelCurl [closed]
I have a large amount of cURL requests to process. There are a couple libraries I've found to help process them parallel, the main ones are RollingCurl ( http://code.google.com/p/rolling-curl/ ) and ...
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 ...
1
vote
0answers
314 views
An example of PHP curl_multi_exec() without curl_multi_select()?
Does anyone have an example of using curl_multi_exec() without curl_multi_select() ? One of our servers still uses Centos5 with PHP5.1.x.
Also the example should allow processing the handles before ...
1
vote
2answers
629 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 ...
0
votes
0answers
218 views
Passing data from an asynchronous call of one PHP file to another asynchronous PHP files
I need to make calls to external resources through a cURL multi handle on page load. Even the multi curl takes longer than I'd want so I want to call the PHP multi curl (and get the subsequent data) ...
2
votes
1answer
118 views
What can bottle neck cURL's mult functions in PHP?
Using cURL_multi is great for simultaneous connections, but what can limit the number of connections? I ask because when doing over 500 some of them seem to randomly fail to connect. I am doing HEAD ...

