Hello,
I am trying to use the chgrp() command on a folder that I just created with mkdir(). I have used the following block of code:
$thedir = "/some/path";
mkdir($thedir,0777);
chgrp($thdir, users);
This returns a message saying:
Warning: chgrp failed: Operation not permitted in validate.obj on line 278
The folder is intially owned by nobody. Any suggestions on how to get it to work?
Thanks,
Daniel Ice