file_get_contents() failed to open stream: No such file or directory

php

Solution

remove extra .php from url

   $filename = "http://www.hf-live.com/codeupdate/Get_Files_Name.php";

You will get error if you are doing this way...

   $filename = "marynyhof.com/Info.php"; // will give you error, which exactly you are getting

use full url like this

   $filename = "http://www.marynyhof.com/Info.php"; //will work

Problem

I am writing some php script to update the code on my sites. In order to do that I have written the following lines which checks for the update version and bring the name from where I use to distribute my updates ans then creates the link of that name. I have done something like this. ``` $filename = "http://www.hf-live.com/codeupdate/Get_Files_Name.php"; $contents = file_get_contents($filename); echo $contents; ``` I am getting this error failed to open stream: No such file or directory. Even though the file is present still I am getting the same error. I have turned on my `allow_url_fopen` to `on`. The above code is working from my local host but not from the server. I have to update a major bug fix and I am stuck.. Please someone help me soon..

Original source

Related problems