“Centos 8 Laravel Izin ditolak” Kode Jawaban

Centos 8 Laravel Izin ditolak

sudo find ./storage -type f -exec chmod 666 {} \;
sudo find ./storage -type d -exec chmod 777 {} \;
Jaskaran

Centos 8 Laravel Izin ditolak

#for Centos 8 (stream)
setenforce 0

#new installations
cd /var/www/html/storage
mkdir -pv framework/views app framework/sessions framework/cache framework/cache/data

#new and existing
sudo chown -R apache:apache /var/www/html/ #ubutu is www-data:www-data
sudo find /var/www/html -type f -exec chmod 664 {} \;
sudo find /var/www/html -type d -exec chmod 755 {} \; #neve set to 777, that's evil!

#verify
ls -ld storage
Carroll Bradford

Jawaban yang mirip dengan “Centos 8 Laravel Izin ditolak”

Pertanyaan yang mirip dengan “Centos 8 Laravel Izin ditolak”

Lebih banyak jawaban terkait untuk “Centos 8 Laravel Izin ditolak” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya