-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
161 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
1answer
55 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
37 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
187 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
189 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
231 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 ...
1
vote
1answer
121 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
100 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
122 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
132 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
196 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
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
88 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
114 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
331 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
221 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
1answer
223 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
151 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
408 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
935 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 ...
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
318 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
93 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
228 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
271 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
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 ...
2
votes
1answer
189 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
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 ...
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
417 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
776 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
281 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
627 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
217 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 ...
4
votes
1answer
648 views

curl_errno returns 0 instead of 6

$data_struct = array(); $data_struct[]['opts'] = array( CURLOPT_URL => 'http://www.yahoo.com/', CURLOPT_RETURNTRANSFER => true); $data_struct[]['opts'] = array( CURLOPT_URL => ...
3
votes
1answer
458 views

Individual Response Time using PHP curl_multi

It is possible to record the response times of each process using curl_multi? Here's the code I'm currently using I'm just not sure how to record the response times of each process. Thanks for any ...
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
vote
1answer
155 views

Request always* takes atleast 1 second when timeout > 2

Ok this is really weird. When i do a request to my localhost (which takes about 1-2 ms), it takes curl much longer. It seems to be depend on the timeout (lowest of ConnectionTimeout / normaltimeout). ...
1
vote
2answers
201 views

Is there any setting that indicate curl_multi_exec limits?

I not sure is there a configuration or setting indicate maximum curl can execute in curl_multi_exec Logically, you can stackup as many as you want to, with the expenses of CPU usage, and network ...
2
votes
1answer
729 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?
3
votes
2answers
582 views

PHP Multi curl or multi threading

I'm building a cron job that does the following: 1. Get records from DB 2. For each record fire a curl request to an API. (some requests are quick and some are uploading large images or videos). 3. If ...
0
votes
2answers
199 views

curl_exec: how to cancel a long running HTTP request?

I'm using PHP's curl_exec() to make a request to an API that has a very long running process. But I don't actually need to know the result, I only need the process to be started. It doesn't matter to ...

1 2