0

I have set ubuntu 10.10 server with LAMP. I use USERDIR mod for apache, but when I install some CMS systems for user like Concrete5, I need to set chmod 777 to some directorys to write data with CMS. Is it possible to add some permissions for apache, so that I don't need to use chmod command.

I have read something about suPHP. Is it good for this?

Rinzwind
  • 299,756
user13123
  • 201

1 Answers1

1

Just change all the files ownership under the concrete5 directory to www-data or whatever user you are running:

sudo chown -R www-data:www-data concrete5

enter image description here

Braiam
  • 67,791
  • 32
  • 179
  • 269