Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions _one-click-installation/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ sudo mysql -h "localhost" -u "root" "-p${PASSWORD}" < "/var/www/html/${PROJECTFO

# writing rights to avatar folder
sudo chown -R www-data "/var/www/html/${PROJECTFOLDER}/public/avatars"

# If you are working with Vagrant, adding the www-data user to vagrant's group let you upload images to the avatars folder with 755 permissions. Of course, it also applies to other folders.
#sudo usermod -a -G vagrant www-data

# if this didn't work for you, you can also try the hard way:
#sudo chmod 0777 -R "/var/www/html/${PROJECTFOLDER}/public/avatars"

Expand Down