I need to change the the permissions of a directory in my ftp server. I use:
$directory = "../pagescsd";
chmod ($directory, 0777);
Warning: chmod failed: Operation not permitted in ...
I read some information about this problem, the web server typically runs as a low access account, such as "nobody" on Unix, but i need to know if there is any change to go around it.
Thanks...
$directory = "../pagescsd";
chmod ($directory, 0777);
Warning: chmod failed: Operation not permitted in ...
I read some information about this problem, the web server typically runs as a low access account, such as "nobody" on Unix, but i need to know if there is any change to go around it.
Thanks...