In the code below, via localhost xampp works correctly by accessing a server in ipfixo or ddns, but the same code in the hosting returns me:
"failed to open stream: Connection timed out"
$url = sprintf("%s%s%s/%s", $servidor, $AutenticarUsuario, $usuario, $senha);
$ctx = stream_context_create(array('http'=>
array(
'timeout' => 10, //10 segundos
)
));
$rest = file_get_contents($url, false, $ctx);