PHP - typ zawartości nie określony przy założeniu aplikacji / x-www-form-urlencoded

Przez 2 dni mam problem z moim skryptem PHP na moim serwerze. Nic nie zmieniłem i nagle przestało działać.

Oto kod:

$query = http_build_query($data);
$options = array(
    'http' => array(
        'header' => "Content-Type: application/x-www-form-urlencoded\r\n".
                    "Content-Length: ".strlen($query)."\r\n",     
        'method'  => "POST",
        'content' => $query,
    ),
);
$opts = array('http'=>array('header' => "User-Agent:MyAgent/1.0\r\n",'method'  => 'POST',
        'content' => http_build_query($data),));
$contexts = stream_context_create($opts);
$context  = stream_context_create($options);
$result = file_get_contents($url, false, $contexts, -1, 40000);

Dostaję te komunikaty o błędach:

Uwaga: file_get_contents (): Nie określono typu zawartości, przyjmując, że aplikacja / x-www-form-urlencoded in

Ostrzeżenie: file_get_contents (https://mobile.dsbcontrol.de): nie udało się otworzyć strumienia: żądanie HTTP nie powiodło się! Błąd wewnętrznego serwera HTTP / 1.1 500 w

Ale kiedy próbuję skryptu lokalnie, działa idealnie.

questionAnswers(2)

yourAnswerToTheQuestion