je pense pas que ça vienne de la vu que sur certain serveur j'ai pas ce probleme.
Voila mon code
$h=@fsockopen($domain,80,$errno,$errstr,8);
if ($h)
{
$out = "POST /".$chemin." HTTP/1.1\r\n";
$out .= "Host: ".$domain."\r\n";
$out .= "Connection: Close\r\n";
$out .= "Content-type: application/x-www-form-urlencoded\r\n";
$out .= "Content-Length: ".strlen($postdata)."\r\n\r\n";
$out .= $postdata."\r\n";
fwrite($h,$out);
while (!feof($h))
{
$data.=fgets($h,256);
}
fclose($h);
}