364,111 Members | 2109 Browsing Online
Community for Developers & IT Professionals
Bytes IT Community

php_network_getaddresses: getaddrinfo failed

_q_u_a_m_i_s's
P: n/a
_q_u_a_m_i_s's
Hy,
i have a problem with PHP 5.1.6

I have a script containing something like this:
$f=fsockopen("www.site01.com",80,$errNo,$errStr);
var_dump($f);

When accessing this from apache, i get this error:
php_network_getaddresses: getaddrinfo failed.
When running the same scipt from the CLI (php ./dns.php), i get no
error, and i`m able to connect (and read/write) to www.site01.com

I have another script containing something like this:
$f=fsockopen("www.site02.com",80,$errNo,$errStr);
var_dump($f);

This site is available both from apache, and from CLI.

( so i`m able to connect only to certain websites)

This problem appeared about 1 month ago when the dns servers failed to
work, and they were changed(in /etc/resolv.conf). Before this was
done, everything worked fine. The thing i do not understand is why
only certain sites are available from php, but no restrictions apply
when in CLI.

Anybody else had this problem?

Dec 4 '07 #1
Share this Question
Share on Google+
5 Replies


Rik Wasmus
P: n/a
Rik Wasmus
On Tue, 04 Dec 2007 14:30:37 +0100, _q_u_a_m_i_s's <quamis@gmail.com
wrote:
Hy,
i have a problem with PHP 5.1.6
>
I have a script containing something like this:
$f=fsockopen("www.site01.com",80,$errNo,$errStr);
var_dump($f);
>
When accessing this from apache, i get this error:
php_network_getaddresses: getaddrinfo failed.
When running the same scipt from the CLI (php ./dns.php), i get no
error, and i`m able to connect (and read/write) to www.site01.com
>
I have another script containing something like this:
$f=fsockopen("www.site02.com",80,$errNo,$errStr);
var_dump($f);
>
This site is available both from apache, and from CLI.
>
( so i`m able to connect only to certain websites)
>
This problem appeared about 1 month ago when the dns servers failed to
work, and they were changed(in /etc/resolv.conf). Before this was
done, everything worked fine. The thing i do not understand is why
only certain sites are available from php, but no restrictions apply
when in CLI.
According to some old bugreports, on a DNS servers change (or new DHCP
lease?), the 'running' PHP module doesn't get the new DNS server address,
or at least bugs, while the CLI does get the change. What happens when you
restart apache/the webserver?
--
Rik Wasmus
Dec 4 '07 #2

_q_u_a_m_i_s's
P: n/a
_q_u_a_m_i_s's
On Dec 4, 3:41 pm, "Rik Wasmus" <luiheidsgoe...@hotmail.comwrote:
On Tue, 04 Dec 2007 14:30:37 +0100, _q_u_a_m_i_s's <qua...@gmail.com>
wrote:
>
>
>
Hy,
i have a problem with PHP 5.1.6
>
I have a script containing something like this:
$f=fsockopen("www.site01.com",80,$errNo,$errStr);
var_dump($f);
>
When accessing this from apache, i get this error:
php_network_getaddresses: getaddrinfo failed.
When running the same scipt from the CLI (php ./dns.php), i get no
error, and i`m able to connect (and read/write) towww.site01.com
>
I have another script containing something like this:
$f=fsockopen("www.site02.com",80,$errNo,$errStr);
var_dump($f);
>
This site is available both from apache, and from CLI.
>
( so i`m able to connect only to certain websites)
>
This problem appeared about 1 month ago when the dns servers failed to
work, and they were changed(in /etc/resolv.conf). Before this was
done, everything worked fine. The thing i do not understand is why
only certain sites are available from php, but no restrictions apply
when in CLI.
>
According to some old bugreports, on a DNS servers change (or new DHCP
lease?), the 'running' PHP module doesn't get the new DNS server address,
or at least bugs, while the CLI does get the change. What happens when you
restart apache/the webserver?
--
Rik Wasmus
The apache server was restarted many times...still nothing.
Dec 4 '07 #3

Jerry Stuckle
P: n/a
Jerry Stuckle
_q_u_a_m_i_s's wrote:
On Dec 4, 3:41 pm, "Rik Wasmus" <luiheidsgoe...@hotmail.comwrote:
>On Tue, 04 Dec 2007 14:30:37 +0100, _q_u_a_m_i_s's <qua...@gmail.com>
>wrote:
>>
>>
>>
>>Hy,
>>i have a problem with PHP 5.1.6
>>I have a script containing something like this:
>> $f=fsockopen("www.site01.com",80,$errNo,$errStr);
>> var_dump($f);
>>When accessing this from apache, i get this error:
>>php_network_getaddresses: getaddrinfo failed.
>>When running the same scipt from the CLI (php ./dns.php), i get no
>>error, and i`m able to connect (and read/write) towww.site01.com
>>I have another script containing something like this:
>> $f=fsockopen("www.site02.com",80,$errNo,$errStr);
>> var_dump($f);
>>This site is available both from apache, and from CLI.
>>( so i`m able to connect only to certain websites)
>>This problem appeared about 1 month ago when the dns servers failed to
>>work, and they were changed(in /etc/resolv.conf). Before this was
>>done, everything worked fine. The thing i do not understand is why
>>only certain sites are available from php, but no restrictions apply
>>when in CLI.
>According to some old bugreports, on a DNS servers change (or new DHCP
>lease?), the 'running' PHP module doesn't get the new DNS server address,
>or at least bugs, while the CLI does get the change. What happens when you
>restart apache/the webserver?
>--
>Rik Wasmus
>
The apache server was restarted many times...still nothing.
>
Was it completely stopped and started, or just restarted? The latter
only reloads the configuration, IIRC.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

Dec 4 '07 #4

_q_u_a_m_i_s's
P: n/a
_q_u_a_m_i_s's
On Dec 4, 4:02 pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
_q_u_a_m_i_s's wrote:
On Dec 4, 3:41 pm, "Rik Wasmus" <luiheidsgoe...@hotmail.comwrote:
On Tue, 04 Dec 2007 14:30:37 +0100, _q_u_a_m_i_s's <qua...@gmail.com>
wrote:
>
>Hy,
>i have a problem with PHP 5.1.6
>I have a script containing something like this:
> $f=fsockopen("www.site01.com",80,$errNo,$errStr);
> var_dump($f);
>When accessing this from apache, i get this error:
>php_network_getaddresses: getaddrinfo failed.
>When running the same scipt from the CLI (php ./dns.php), i get no
>error, and i`m able to connect (and read/write) towww.site01.com
>I have another script containing something like this:
> $f=fsockopen("www.site02.com",80,$errNo,$errStr);
> var_dump($f);
>This site is available both from apache, and from CLI.
>( so i`m able to connect only to certain websites)
>This problem appeared about 1 month ago when the dns servers failed to
>work, and they were changed(in /etc/resolv.conf). Before this was
>done, everything worked fine. The thing i do not understand is why
>only certain sites are available from php, but no restrictions apply
>when in CLI.
According to some old bugreports, on a DNS servers change (or new DHCP
lease?), the 'running' PHP module doesn't get the new DNS server address,
or at least bugs, while the CLI does get the change. What happens when you
restart apache/the webserver?
--
Rik Wasmus
>
The apache server was restarted many times...still nothing.
>
Was it completely stopped and started, or just restarted? The latter
only reloads the configuration, IIRC.
>
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
That fixed it:)
I restarted the whole server...after stopping apache it refused to
open again, so i restarted the server and it worked.

Thanx
Dec 4 '07 #5

allain
P: n/a
allain
On Dec 4, 9:54 am, "_q_u_a_m_i_s's" <qua...@gmail.comwrote:
On Dec 4, 4:02 pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
>
>
>
_q_u_a_m_i_s's wrote:
On Dec 4, 3:41 pm, "Rik Wasmus" <luiheidsgoe...@hotmail.comwrote:
>On Tue, 04 Dec 2007 14:30:37 +0100, _q_u_a_m_i_s's <qua...@gmail.com>
>wrote:
>
>>Hy,
>>i have a problem with PHP 5.1.6
>>I have a script containing something like this:
>> $f=fsockopen("www.site01.com",80,$errNo,$errStr);
>> var_dump($f);
>>When accessing this from apache, i get this error:
>>php_network_getaddresses: getaddrinfo failed.
>>When running the same scipt from the CLI (php ./dns.php), i get no
>>error, and i`m able to connect (and read/write) towww.site01.com
>>I have another script containing something like this:
>> $f=fsockopen("www.site02.com",80,$errNo,$errStr);
>> var_dump($f);
>>This site is available both from apache, and from CLI.
>>( so i`m able to connect only to certain websites)
>>This problem appeared about 1 month ago when the dns servers failed to
>>work, and they were changed(in /etc/resolv.conf). Before this was
>>done, everything worked fine. The thing i do not understand is why
>>only certain sites are available from php, but no restrictions apply
>>when in CLI.
>According to some old bugreports, on a DNS servers change (or new DHCP
>lease?), the 'running' PHP module doesn't get the new DNS server address,
>or at least bugs, while the CLI does get the change. What happens when you
>restart apache/the webserver?
>--
>Rik Wasmus
>
The apache server was restarted many times...still nothing.
>
Was it completely stopped and started, or just restarted? The latter
only reloads the configuration, IIRC.
>
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
>
That fixed it:)
I restarted the whole server...after stopping apache it refused to
open again, so i restarted the server and it worked.
>
Thanx
Could it be an extension to php. some setups have multiple php.ini
files (for apache, cli, etc...) Try hunting around.
Dec 9 '07 #6

Post your reply

Help answer this question



Didn't find the answer to your PHP question?

You can also browse similar questions: PHP