Open dumanhaydar opened 6 years ago
$wsdl = file_get_contents($url );
with
$ch = curl_init();
$timeout = 5;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$wsdl = curl_exec($ch);
curl_close($ch);
in classes\DpdClient.php
$source = file_get_contents($url);
with
$ch = curl_init();
$timeout = 5;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$source = curl_exec($ch);
curl_close($ch);
I replace file_get_contents with cUrl