Hi, 
 
   I have a snippet of code as follows:
 
<?php
 
ini_set('display_errors', 1); error_reporting(E_ALL);
$curDir = getcwd();
echo $curDir;
chmod($curDir,0777);
unlink("testFile.txt");
echo unlink("testFile.txt");  
chmod ($curDir,0755);
?> 
 
The problem is that I do not seem to have the correct permissions, even though 
I seem to have changed the permissions of the folder to 777 already upon the 
file deletion time. This is the output I got:
 
C:\Inetpub\wwwroot\projectWarning: unlink(testFile.txt) [function.unlink]: 
Permission denied in C:\Inetpub\wwwroot\project\file_write.php on line 
9Warning: unlink(testFile.txt) [function.unlink]: Permission denied in 
C:\Inetpub\wwwrootproject\file_write.php on line 10
 
Could anyone give me some tips on how to resolve this error? Thanks in advance.
 
Alice
_________________________________________________________________
All-in-one security and maintenance for your PC.  Get a free 90-day trial!
http://www.windowsonecare.com/purchase/trial.aspx?sc_cid=wl_wlmail

Reply via email to