Created
February 1, 2022 11:57
-
-
Save asilbalaban/b674048706d4606436824f3aa5f10276 to your computer and use it in GitHub Desktop.
laravel chmod
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd /var/www/laravel_project | |
| php artisan cache:clear | |
| php artisan config:clear | |
| sudo service apache2 stop | |
| sudo chown -R $USER:www-data storage | |
| sudo chown -R $USER:www-data bootstrap/cache | |
| chmod -R 775 storage | |
| chmod -R 755 bootstrap/cache | |
| sudo service apache2 start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment