0

I just installed Ubuntu with LAMP, to use it as development and test server.

Under terminal and using : sudo, I created a php test file and it's working, but I can't copy files using the graphical interface of Ubuntu to the var/www directory.

I can only Create, Copy, Moving files under Terminal using sedo.

How to give the default user permissions to manage the www directory ?

Thanks in advance.

Hamza
  • 264

2 Answers2

1

There are many ways to do that but you can set group permissions of /var/www to www-data (rwx) for example (apache's user and group) and you can give the www-data group to your user.

laurent
  • 2,065
0

go to shell and write:

    chown -R yourusername /var/www/* 
    chmod -R 755 /var/www/*