tags:

views:

199

answers:

2

This script is causing my php file to hang:

$handle   = curl_init($pictureimg); 
    $connectable = curl_exec($handle);
    curl_close($handle);

Any idea why? It was working a few days ago. Then I think I accidentally changed a setting somewhere, and all my curls have stopped working.

A: 

maybe this could help you out

x4tje
A: 

Does php wait while executing a CURL request? Maybe the other server is getting low on resources.

The Guy Of Doom