paulman888888 Posted November 28, 2010 Share Posted November 28, 2010 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 Link to comment https://forums.phpfreaks.com/topic/220080-file_get_contents-not-working-on-same-server/ Share on other sites More sharing options...
BlueSkyIS Posted November 28, 2010 Share Posted November 28, 2010 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'); Link to comment https://forums.phpfreaks.com/topic/220080-file_get_contents-not-working-on-same-server/#findComment-1140680 Share on other sites More sharing options...
paulman888888 Posted November 28, 2010 Author Share Posted November 28, 2010 I couldn't get it to work so I got it to point to an external server for it to point right back. Bandwidth thrashing i know but it works Link to comment https://forums.phpfreaks.com/topic/220080-file_get_contents-not-working-on-same-server/#findComment-1140692 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.