Laravel 사이트에서 빈 흰색 화면을 보는 것은 답답할 수 있습니다. 이 문제는 Apache 2.4 및 PHP 5.5.7로 업그레이드한 후에 자주 발생합니다.
업그레이드로 인한 Apache 구성 변경으로 인해 문제가 발생할 수 있습니다. 잠재적인 충돌을 해결하려면 Apache 2.4의 변경 사항을 설명하는 답변을 참조하세요.
Apache 로그가 아닌 Laravel의 로그를 확인하세요. app/storage 디렉터리를 확인하고 PHP를 실행하는 사용자가 쓸 수 있는지 확인하세요. 이를 위해서는 그룹 또는 전체 쓰기 권한을 부여해야 할 수도 있습니다.
$ sudo chown -R www-data /path/to/laravel/files
$ sudo chown -R apache /path/to/laravel/files
# Group Writable (Group, User Writable) $ sudo chmod -R gu+w app/storage # World-writable (Group, User, Other Writable) $ sudo chmod -R guo+w app/storage
# Group Writable (Group, User Writable) $ sudo chmod -R gu+w storage # World-writable (Group, User, Other Writable) $ sudo chmod -R guo+w storage # Additionally, the bootstrap/cache directory may require write access # Group Writable (Group, User Writable) $ sudo chmod -R gu+w bootstrap/cache # World-writable (Group, User, Other Writable) $ sudo chmod -R guo+w bootstrap/cache
위 내용은 Apache 2.4 및 PHP 5.5.7로 업그레이드한 후 Laravel 앱에 빈 흰색 화면이 표시되는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!