Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

file() [function.file]: php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution

Tags:

php

chat

I got the following error when I get contents from file("http://www.otherdomain.com").

file() [function.file]: php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution

The domain server is linux.

How to resolve this problem?

like image 431
Sachin Avatar asked Nov 28 '22 12:11

Sachin


1 Answers

Quoting:

If you're having problems with fopen("url...") but you can run 'host url' in a shell window and get the correct lookup, here's why...

This has had me banging my head against it all day - finally I found the answer buried in the bug reports, but figured it should really be more prominent!

The problem happens when you're on an ADSL line with DHCP (like our office)... When the ADSL modem renews the DHCP lease, you can also switch DNS servers, which confuses apache (and hence PHP) - meaning that you can't look up hosts from within PHP, even though you can from the commandline.... The short-term solution is to restart apache.

You'll get "php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution in ..." messages as symptoms. Restart apache, and they're gone :-)

Simon

Comment by Simon at php.net

like image 134
Shahriyar Imanov Avatar answered Dec 09 '22 15:12

Shahriyar Imanov