vote up 1 vote down star

Hi. I moved from a shared hosting to a VPS a few weeks ago and I'm having these annoying permission issues with WordPress. You know you can download and upgrade plugins (and wordpress itself) from the admin panel, but since I moved it started asking me my FTP credentials, which is kinda slow when I have to update ~20 plugins.

I think this should be some kind of rights issue. I looked that the shared hosting wordpress files, they all belong to the username and group kovshenin (kovshenin:kovshenin) and the files are -rw-r--r-- and the directories are drwx-r-xr-x.

On my VPS apache runs under apache:apache and my files are kovshenin:kovshenin. What should I do to make them readable and writable by both kovshenin and apache?

Also, I changed the permissions to 0777 for all files and folders of my wordpress installation, that allowed me to install and delete plugins without FTP, but when I pushed to automatic upgrade to WordPress 2.8.1 it still asked me for my FTP account. Is that a wp issue or did I miss something?

Thanks.

Update: I managed to run id and id www-data on the MediaTemple shared hosting. User kovshenin is in group kovshenin, and www-data is in group www-data. No more groups. What's the trick?

Another update Okay, I added the apache user to the kovshenin group, my wordpress files are kovshenin:kovshenin with rw-rw-r-- permissions and drwxrwxr-x permissions on directories, but something is still wrong. The user apache can access the files and folders, I can use the online Themes and Plugins editor in the wordpress admin panel, I'm able to make changes to the .htaccess file from within wordpress, but plugin/theme installation still asks me for FTP credentials!

Any ideas? Thanks.

flag

75% accept rate
Are you saying that apache running under apache:apache can access the WordPress files with www-data:www-data? If so then find out how it's managing that and configure it do the same with kovshenin:kovshenin. – Troubadour Jul 11 at 13:59
No. www-data is on the shared hosting, and apache is running under www-data. The user apace is on my VPS and it's running under user and group apache:apache. – kovshenin Jul 11 at 14:09

2 Answers

vote up 3 vote down

What should I do to make them readable and writable by both kovshenin and apache?

  • Create a new group, say "wordpress".
  • Add both koveshenin and www-data users to the wordpress group.
  • Change the group owner of all the files to wordpress (using chgrp).
  • Make sure all the files are group writeable.
  • Set the g+s (setgid) permission bit on all the directories of interest.
  • Make sure kovshenin and apache's default umask includes group read & write permission.

The second last step is the trick. It means that whenever kovshenin or apache creates a file in those directories, the group owner will be set to wordpress (instead of kovshenin or apache).

link|flag
Okay this is closer, thanks so much, but how come the user www-data and kovshenin on the Media Temple shared hosting account don't have additional groups? What's that trick called? ;) – kovshenin Jul 11 at 14:11
Hard to say, but the shared hosting account might be set up using phpsuexec. – caf Jul 11 at 14:39
Okay caf, will check that out, thank you. – kovshenin Jul 11 at 14:42
Hey there caf, one more question. I changed the group owner of all the files and dirs in the wp folder to apache, the owner is still kovshenin, so it's kovshenin:apache and the rights are 0775, so both kovshenin and apache have rights to read write and execute files. Works fine. I did the g+s part, new files are created with kovshenin:apache, all fine, BUT, the rights for the new file are 755. How do I fix that for 775? Tried settings g+ws.. Doesn't seem to work. Any ideas? Thanks once more. – kovshenin Jul 11 at 17:44
Oh, sorry, that must be the umask.. =) – kovshenin Jul 11 at 17:48
show 1 more comment
vote up 2 vote down

You can give ownership to www-data according to here.

Run the following command in your WordPress directory (sudo required):

sudo chown -Rf www-data *

Works for Apache.

link|flag
That works fine, but then I can't edit those files with my regular user and this is what freaks me out.. :( – kovshenin Jul 11 at 13:24
Are they not still group owned by kovshenin? You ought to be able to still edit them if they are. If not then you could try making the user kovshenin a member of the group that they are owned by and use newgrp to change your group to that before editing them. – Troubadour Jul 11 at 13:39
They are group owned by kovshenin, but new files which I'll upload from the user kovshenin will become kovshenin:kovshenin and I'd have to chown again. I'm setting up the hosting for a few clients of mine and I'd like their files to be kovshenin:kovshenin style, not apache (or www-data). I wonder how MediaTemple did that.. – kovshenin Jul 11 at 13:42
You can add your regular user to the www-data group or you could also append sudo in the beginning of your command. – KahWee Jul 11 at 13:44
What command? Please read what I'm trying to do, it's not that simple.. There are no additional groups. – kovshenin Jul 11 at 13:49
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.