1sudo yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
2sudo yum -y install epel-release yum-utils
3
4sudo yum-config-manager --disable remi-php54
5sudo yum-config-manager --enable remi-php73
6
7sudo yum update
8
9chmod -R 777 vendor
10php artisan view:clear
11php artisan config:cache
12
13sudo chgrp www-data storage -R (Note: www-data is apache on Centos 7)
14sudo chmod g+rwx storage -R
15
16
17if still doesn't work try:
18sudo setfacl -R -d -m g::rwx storage
1# yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
2# yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
3