Hello,
My question revolves around the use of curl_multi_exec in PHP. I am using code similar to the example shown on this link: http://www.rustyrazorblade.com/2008/02/curl_multi_exec/
With about 10 URLs to execute, I sometimes come across the error message:
Fatal error: Maximum execution time of 30 seconds exceeded in...
This message points to the curl_multi_exec line in the code.
I need to continue processing in spite of this and also use means to keep a note of which URL failed to execute.
Can someone help me handle this situation?
Thanks!