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.

link|improve this question

60% accept rate
Consider setting up permissions like described in this question. – Zoredache Jul 12 '11 at 21:19
feedback

2 Answers

up vote 1 down vote accepted

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.

link|improve this answer
feedback

go to shell and write:

    chown -R yourusername /var/www/* 
    chmod -R 755 /var/www/* 
link|improve this answer
Giving all files +x is a baaaaaaad idea. – womble Jul 12 '11 at 23:28
feedback

Your Answer

 
or
required, but never shown

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