Jump to content

file_get_contents not working on same server


paulman888888

Recommended Posts

Hello there,

 

The error i have is that my server can't find itself and it gives me this nice error.

php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution in...

 

You maybe thinking why don't i just include the file or use its relative location (./file.php) but the answer is simple. It doesn't fit in with my framework and its too hard to expand.

 

How else can I execute a file on the same domain using PHP?

 

Thank-you

Paul

if you have to use get_file_contents() but can't reference the file directly, i guess you'll need to pass the full URL to the file so that you essentially retrieve the executed file through apache.

 

$stuff = file_get_contents('http://localhost/somewhere/something.php');

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.