In riferimento all'altro TOPIC link volevo sapere cosa non andava del mio codice.
Il link del file txt che devo raggiungere è il seguente: http://artic.nsn3.net:8080/hosts/nsh...raw_status.txt
E il codice che utilizzo è questo:
Codice PHP:
$file = '';
$fp = fsockopen("artic.nsn3.net", 8080, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
$out = "GET /hosts/nsh_dewizards/public/raw_status.txt HTTP/1.1\r\n";
$out .= "Host: artic.nsn3.net\r\n";
$out .= "Connection: Close\r\n\r\n";
fwrite($fp, $out);
$header = '';
do{
$header .= fgets($fp, 128);
}while(strpos($header, "\r\n\r\n") === false);
while(!feof($fp)){
$file.=fgets($fp, 128);
}
fclose($fp);
}
$testo = explode('clients=', $file);
Prima di rimuovere il blocco server to server mi dava l'errore
Codice:
Destination host forbidden
mentre ora ottengo l'errore:
Codice:
404 Not Found
The requested URL /hosts/nsh_dewizards/public/raw_status.txt was not found on this server.