This is a discussion on windows file permission within the PHP General forums, part of the PHP Programming Forums category; Chris Williams wrote: > I am using PHP on Windows NT CGI/FastCGI and am trying to create a text &...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Chris Williams wrote:
> I am using PHP on Windows NT CGI/FastCGI and am trying to create a text > file and then write some data to it. > > $some_text = "HelloWorld"; > $new_file = fopen("myfile.txt", "w"); > fputs($new_file, $some_text); > fclose($new_file); > > However I am getting Warning: fopen(myfile.txt): failed to open stream: > Permission denied in... > > I don't usually work on Windows but I checked the file permissons on this > folder and they seem to be 777 or drwxrwxrwx > > I'm guessing I have no idea how Windows permissions work. I'm not sure what user PHP runs as when using CGI, so you'll probably need to give "Everyone" permission to read/write to the directory this script is run in. Right click on the folder, choose the Security tab, and add Everyone as a user with the appropriate permissions. -- ---John Holmes... Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/ php|architect: The Magazine for PHP Professionals – www.phparch.com |
|
|||
|
I am using PHP on Windows NT CGI/FastCGI and am trying to create a text
file and then write some data to it. $some_text = "HelloWorld"; $new_file = fopen("myfile.txt", "w"); fputs($new_file, $some_text); fclose($new_file); However I am getting Warning: fopen(myfile.txt): failed to open stream: Permission denied in... I don't usually work on Windows but I checked the file permissons on this folder and they seem to be 777 or drwxrwxrwx I'm guessing I have no idea how Windows permissions work. Chris |
|
|||
|
Chris Williams wrote:
> I am using PHP on Windows NT CGI/FastCGI and am trying to create a text > file and then write some data to it. > > $some_text = "HelloWorld"; > $new_file = fopen("myfile.txt", "w"); > fputs($new_file, $some_text); > fclose($new_file); > > However I am getting Warning: fopen(myfile.txt): failed to open stream: > Permission denied in... > > I don't usually work on Windows but I checked the file permissons on this > folder and they seem to be 777 or drwxrwxrwx In IIS -- you have to set the permissions to "write" for the folder that you want to your script to be able to write to (from the IIS manager) -- Burhan Khalid phplist[at]meidomus[dot]com http://www.meidomus.com ----------------------- "Documentation is like sex: when it is good, it is very, very good; and when it is bad, it is better than nothing." |