PHP - Inhaltstyp nicht angegeben, vorausgesetzt application / x-www-form-urlencoded
Seit 2 Tagen habe ich Probleme mit meinem PHP-Skript auf meinem Server. Ich habe nichts geändert und plötzlich hat es nicht mehr funktioniert.
Hier ist der Code:
$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);
Ich erhalte folgende Fehlermeldungen:
Hinweis: file_get_contents (): Inhaltstyp nicht angegeben, vorausgesetzt application / x-www-form-urlencoded in
Warnung: file_get_contents (https://mobile.dsbcontrol.de): Stream konnte nicht geöffnet werden: HTTP-Anfrage fehlgeschlagen! HTTP / 1.1 500 Interner Server Fehler in
Aber wenn ich das Skript lokal ausprobiere, funktioniert es perfekt.