I need help here. I installed Laravel in my RHEL 8 Server
But I'm getting this error. I know this question already posted many times but I tried to follow the suggestion but no luck for me so far. I have no idea why.
The stream or file "/var/www/html/vpa/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied
I tried to use this command to change the permission but it didn't work .
sudo chown -R $USER:www-data storage
sudo chown -R $USER:www-data bootstrap/cache
sudo chmod -R 755 storage
sudo chmod -R 755 bootstrap/cache
sudo setenforce 0
sudo chcon -t httpd_sys_rw_content_t storage
php artisan config:clear
php artisan config:cache
composer dump-autoload
sudo systemctl restart httpd
sudo reboot
Nothing seems to work on my side . I don't know what else to do. Please help me
on ubuntu this step solved it
php artisan config:clear
php artisan cache:clear
sudo chmod -R 775 /var/www/your_folder
sudo chown -R www-data:www-data var/www/your_folder
sudo chmod +w storage/logs/laravel.log
Never use 777
Those are irresponsible permissions
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With