> -----Original Message-----
> From: Daniel Bergqvist [mailto:[EMAIL PROTECTED]] 
> Sent: Thursday, November 01, 2001 9:57 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Problem with fopen() when php is in safe_mode
> 
> 
>       if($dir = @opendir("/home/d5051/public_html/test")){

You're getting filenames from
        /home/d5051/public_html/test

>                        $fd = fopen($file,"r");
> [snip]
>
> Warning: fopen("testar.txt","r") - No such file or directory in 
> /home/d5051/public_html/mail.php on line 17

But your script is apparently running in
        /home/d5051/public_html
And trying to open the file in that same directory.

Try changing the fopen line to

        $fd = fopen("test/$file","r");
Or
        $fd = fopen("/home/d5051/public_html/test/$file","r");


---
Mark Roedel           | "The most overlooked advantage to owning a
Systems Programmer    |  computer is that if they foul up there's no
LeTourneau University |  law against whacking them around a little."
Longview, Texas, USA  |                          -- Owen Porterfield 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to