PDA

View Full Version : Errror number 2


gengar003
02-07-2004, 01:33 AM
I'm using this code to open a remote file and display its contents.


<?
$filename = "http://tacorner.com/news/tanewsupdate.txt";
$fd = fopen ($filename, "r");
$contents = fread ($fd,filesize ($filename));//// The thing it doesn't like

fclose ($fd);
$delimiter = ",";
$splitcontents = explode($delimiter, $contents);
$counter = "";

echo $contents;

foreach ( $splitcontents as $color )
{

$counter = $counter+1;
echo "<b>Split $counter: </b> $color\n<br>";
}

?>


And the file *does* exist.

Now, when I run the script, I get the following error:


Warning: filesize(): Stat failed for http://tacorner.com/news/tanewsupdate.txt (errno=2 - No such file or directory) in /home/tacorne/public_html/news/testing.php on line 6


Any idea why?

Xenon
02-07-2004, 10:31 PM
have you set up the chmod correctly for that file?
it must be readable to php, so readable to the world ;)

gengar003
02-08-2004, 02:16 PM
I CHMOD it 777 and still get the error.

Xenon
02-08-2004, 10:17 PM
try to chmod the directory as well.

also some servers are preventing crossfile opening between different servers..