[phplib] Problem Writing File From: Jose Luis Rodríguez Sevilla (joseluis <email protected>)
Date: 05/26/00

Sorry, i know it's not the best way for my problem.

I try it to open a local file and write into this file. The Script is in my server and the file is in my hard disk.

 if (!($fp = fopen($file, 'w' ))){
  fwrite($fp, $contents, strlen($contents));
 } # Fin del If
 fclose($fp);

And it's say to me the error.

Warning: fopen("c:\dominios\articulos.txt","w") - Permission denied in
/ruta/script.php3 on line xxx

Why?

Thank You and sorry.