hi,
I want to change the owner of my files directory on Drupal, but.. what's the Drupal user ?
I currently only have 1 user in my unix system, who is the one who moved the files. Drupal complains it cannot edit them.
How can I add Drupal to the usersgroup with full writing access ?
chown...
thanks
From stackoverflow
-
You don't need drupal to own them, just add a group that has write access.
Drupal will perform acts as your webserver which typically will be using the www user, for Ubuntu it's
www-data.You can use
chgrpto add the group andchmod g+wto give write permission.You can do it recursively, so you only need to do it once.
JosefAssad : I'll add that for Ubuntu as the asker appears to be using, that would be the www-data user and group.
0 comments:
Post a Comment