dnzone Posted September 28, 2006 Share Posted September 28, 2006 I get the error message below when i try to run the follow code. can anybody tell me where did i do wrong. I am running PHP 5.1.2 on IIS 5.5 (Windows XP)[code]$filename = "textfile.txt";$fp = fopen($filename, "w+");$somecontent = "Hello World";fwrite($fp, $somecontent);fclose($fp);[/code]PHP Warning: fopen(textfile.txt) [function.fopen]: failed to open stream: Permission denied in c:\Inetpub\wwwroot\PHProg\testfile.php on line 10 PHP Warning: fwrite(): supplied argument is not a valid stream resource in c:\Inetpub\wwwroot\PHProg\testfile.php on line 12 PHP Warning: fclose(): supplied argument is not a valid stream resource in c:\Inetpub\wwwroot\PHProg\testfile.php on line 13 Link to comment https://forums.phpfreaks.com/topic/22352-fopen-with-w-string-mode-error/ Share on other sites More sharing options...
mjlogan Posted September 28, 2006 Share Posted September 28, 2006 Make sure you set the right permissions for the file. It's basically a access denied error, so the permissions are not correct. Link to comment https://forums.phpfreaks.com/topic/22352-fopen-with-w-string-mode-error/#findComment-100119 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.