Page 1 of 1
Help ME!!
Posted: Mon Aug 24, 2009 12:43 pm
by cmiddlet78
What does this mean and how to fix it?
Warning: file_get_contents(nw/version.php) [function.file-get-contents]: failed to open stream: No such file or directory in /home/cmiddlet/public_html/*************COM/wp-content/plugins/wpcloaker/wpcloaker.php on line 90
Re: Help ME!!
Posted: Mon Aug 24, 2009 12:56 pm
by John Cartwright
Did you try reading the error? Specifically "No such file or directory"
The file it is trying to include cannot be found at the specified path.
Re: Help ME!!
Posted: Mon Aug 24, 2009 1:08 pm
by cmiddlet78
Please forgive me not a php programmer as you can tell.
The is the code that I think has the issue. Any suggestions?
---------------------------------------------------------------------------------------
// check version
if ($should == true) {
global $wpcloaker_g_iplisturl;
$version_url = $wpcloaker_g_iplisturl . "version.php";
$wpcloaker_version = get_option('wpcloaker_ipversion');
$current_version = file_get_contents($version_url); <------ line 90
$should = ($current_version > $wpcloaker_version) ? true : false;
---------------------------------------------------------------------------------------
Re: Help ME!!
Posted: Mon Aug 24, 2009 1:10 pm
by califdon
We understand that you are not a PHP programmer, but do you read English?
Re: Help ME!!
Posted: Mon Aug 24, 2009 1:11 pm
by jackpf
Lol
The file doesn't exist! The only way to fix it is to open the right file. I can't help you, since I personally don't know what your file structure is.