Maroman
Maroman

Reputation: 316

How to fix fsockopen error?

Please help me to fix my code

$fp = fsockopen("projecthoneypot.org/statistics.php", 80, $errno, $errstr, 5);

if ($fp) {
    $url = "/";

    fputs($fp, "GET $url HTTP/1.1\r\nHost: {projecthoneypot.org/statistics.php}\r\nConnection: close\r\n\r\n");
    $resp = '';

    while(!feof($fp)) {
        $resp .= fgets($fp, 1024);
    }

    echo "$resp";
}

I always get this error

Warning: fsockopen() [function.fsockopen]: php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/xxx/public_html/xxx.php on line 3

Warning: fsockopen() [function.fsockopen]: unable to connect to projecthoneypot.org\statistics.php:80 (php_network_getaddresses: getaddrinfo failed: Name or service not known) in /home/xxx/public_html/xxx.php on line 3

What is the problem please?

Upvotes: 2

Views: 10261

Answers (1)

drew010
drew010

Reputation: 69977

With fsockopen, you need to pass only the ip/hostname.

Try changing:

$fp = fsockopen("projecthoneypot.org/statistics.php", 80, $errno, $errstr, 5);
// to
$fp = fsockopen("projecthoneypot.org", 80, $errno, $errstr, 5);

As part of your HTTP request, Host: should just be projecthoneypot.org, not projecthoneypot.org/statistics.php.

$url should probably be /statistics.php

Upvotes: 4

Related Questions