Re: [PHP] Re: failed to open stream warning

2006-01-04 Thread Travis Doherty
zedleon wrote: >>Warning: fopen(home/path/temp") failed to open stream: No such file or >>directory >>I am trying to write a script to work with GnuPG, but can't get past this >>basic problem. >>Everything I try gives me the same warning. > >I just corrected the code...I had it correct but posted

Re: [PHP] Re: failed to open stream warning

2006-01-04 Thread Michael Hulse
On Jan 4, 2006, at 4:56 PM, zedleon wrote: I just corrected the code...I had it correct but posted it in correctly. $fp = fopen("home/path/temp" "w+"); puts($fp, $msg); fclose($fp); Still getting the same warning... I think you forgot a comma this time... $fp = fopen("home/path/temp", "w

[PHP] Re: failed to open stream warning

2006-01-04 Thread zedleon
I just corrected the code...I had it correct but posted it in correctly. $fp = fopen("home/path/temp" "w+"); puts($fp, $msg); fclose($fp); Still getting the same warning... Thanks ""zedleon"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Has anybody had any experience in resolvi