250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- nginx
- pip
- PostgreSQL
- 해시키
- Vue.js
- https
- window
- Android
- 안드로이드
- 구글 API
- Cordova
- 파이썬
- mac
- selenium
- MYSQL
- alb
- Vue
- Passport
- php
- flutter
- python
- ubuntu
- Laravel
- FCM
- OAuth
- MacOS
- AWS
- SSH
- Prometheus
- node
Archives
- Today
- Total
print( sjw.iq == 200) output : true
[Laravel] Storage 권한 관련 문제 본문
728x90
반응형
apache2 의 로그를 읽어보니까
PHP Fatal error: Uncaught ErrorException: file_put_contents(/var/www/html/join-tech/storage/framework/views/3b138001ceb752c307297765ddf9bc3c1ab4fdf6.php): failed to open stream: Permission denied in /var/www/html/join-tech/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122\nStack tra
file 권한 관련해서 문제가 있었습니다.
자세히는 모르겠지만 아마도 아파치 설정 관련해서 잘못 설정해주었나 봅니다 ㅠㅠ
결론은 권한을 바꿔주면 됩니당!
해당 라라벨 프로젝트에 들어가셔서 다음과 같은 명령어를 날려줍니다
mkdir -p bootstrap/cache
chown -R www-data:www-data bootstrap/cache
mkdir -p storage/logs
mkdir -p storage/framework/cache
mkdir -p storage/framework/sessions
mkdir -p storage/framework/views
chown -R www-data:www-data storage
그러면 이제 storage/framwork 밑의 디렉토리들에 권한 문제가 사라지게 됩니다!
안녕히 계세요!
728x90
반응형
'PHP' 카테고리의 다른 글
[Laravel] laravelcollective/html https 적용하기 (0) | 2020.02.04 |
---|---|
[Laravel] Laravel에서 AWS SES를 이용한 Mail 전송하기 (0) | 2020.01.28 |
[Laravel] Excel 파일 관리하기 (0) | 2019.10.31 |
[PHP] Ubuntu18.04에 php, apache, laravel 설치 및 설정 (0) | 2019.08.01 |
[Lalavel Framework] Queue 사용하기 (0) | 2019.06.11 |
Comments