1

on the shell for the school server, I have

Normal Rights:
  system:administrators rlidwka
  http rl
  yfc439 rlidw
  httpsvc.webhost03.ucs.njit.edu rl

how exactly do I change the permission for http because in the php file, say I have:

<?php
$file = fopen("test.txt","w") or die("error");
echo fwrite($file,"Hello World. Testing!");
fclose($file);
?>

the php doesn't write to test.txt once I open the php file on the browser

Bango
  • 288
  • 2
  • 14

1 Answers1

1

try:

fs setacl ~/public_html/some.dir http write
夢のの夢
  • 5,054
  • 7
  • 33
  • 63