Hallo,
woran kanns liegen, wenn man bei einem POST-Aufruf über Socket-Verbindung einen Fehler 500 vom Server bekommt?
Die Verbindung öffne ich über die einigermaßen gut im Netz verbreitete Methode:
Antwort:
Probiert hab ich schon HTTP-Version 1.0 und 1.1, kein Unterschied.
Viele Grüße!
Gockulus herumwurschtulens
woran kanns liegen, wenn man bei einem POST-Aufruf über Socket-Verbindung einen Fehler 500 vom Server bekommt?
Die Verbindung öffne ich über die einigermaßen gut im Netz verbreitete Methode:
PHP-Code:
function PostToHost($host, $path, $referer, $data_to_send)
{
$fp = fsockopen($host, 80);
printf("öffnen!\n");
fputs($fp, "POST $path HTTP/1.0\r\n");
fputs($fp, "Host: $host\r\n");
fputs($fp, "Referer: $referer\r\n");
fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n");
fputs($fp, "Content-length: ". strlen($data_to_send) ."\r\n");
fputs($fp, "Connection: close\r\n\r\n");
fputs($fp, $data_to_send);
printf("gesandt!\n");
while(!feof($fp))
{
echo fgets($fp, 128);
}
printf("fertig!\n");
fclose($fp);
return $res;
}
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator to inform of the time the error occurred and of anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator to inform of the time the error occurred and of anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Viele Grüße!
Gockulus herumwurschtulens
Kommentar