Reputation: 366
How to install Laravel5.0, apache, mysql and php5.4 on Ubuntu? thank you
Upvotes: 1
Views: 74
Reputation: 291
This should fix all permissions problems between apache2 user and your current ubuntu user.
sudo adduser <username> www-data
/var/www
):sudo chown -R www-data:www-data /var/www
sudo chmod -R g+rwX /var/www
Upvotes: 2