Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The second page on the curl cant open because I try to fetch big file. When the proccess in first page finish, second page opens. How can I solve that without using curl_multi_exec. upload.php:

$curl = curl_init('http://example.com/upload.php');
$curlopt[CURLOPT_SSL_VERIFYHOST] = true;
$curlopt[CURLOPT_POST] = true;
$curlopt[CURLOPT_RETURNTRANSFER] = true;
$curlopt[CURLOPT_POSTFIELDS] = array('myfile'=>'@'.$u->file);
$curlopt[CURLOPT_INFILESIZE] = (string)filesize($u->file);
$curlopt[CURLOPT_INFILE] = fopen($u->file,'r');
curl_setopt_array($curl,$curlopt);
curl_exec($curl);
curl_close($curl);
share|improve this question
second page on the curl - is that about surfing or some other kind of sports? – hakre Apr 26 '12 at 18:46
What exactly are you doing? Some code would be nice. – Rocket Hazmat Apr 26 '12 at 18:48

2 Answers

You can set CURLOPT_TIMEOUT option of curl to bigger value inorder not to lose first connection

You can refer here for more option

share|improve this answer
By the way, is it possible to see some part of your codes? – cubuzoa Apr 26 '12 at 18:45
Add my code. When I run the same page twice. expects to finish the first one. I think relevant to Curl session. – Php Developer Apr 27 '12 at 14:34

This is what i would advice

A. Split large files into chunks : http://stackoverflow.com/a/10271542/1226894

B. Use Multi Curl : http://stackoverflow.com/a/10036599/1226894

Have answered it before and don't think it should be duplicated but let me know if you have any questions

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.