rooot_999
rooot_999

Reputation: 366

Installing Laravel 5.0

How to install Laravel5.0, apache, mysql and php5.4 on Ubuntu? thank you

Upvotes: 1

Views: 74

Answers (1)

gorgonauta
gorgonauta

Reputation: 291

This should fix all permissions problems between apache2 user and your current ubuntu user.

  1. Add your current user to group www-data (the default apache2 user):

sudo adduser <username> www-data

  1. Change ownership of project's directory (usually /var/www):

sudo chown -R www-data:www-data /var/www

  1. Change group permissions:

sudo chmod -R g+rwX /var/www

Upvotes: 2

Related Questions