在 Laravel 网站上面对空白屏幕可能会令人沮丧。此问题通常在升级到 Apache 2.4 和 PHP 5.5.7 后出现。
升级过程中 Apache 配置的更改可能会导致该问题。请参阅描述 Apache 2.4 中的更改的答案来解决任何潜在的冲突。
确保您检查的是 Laravel 的日志而不是 Apache 的日志。检查 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
以上是为什么我的 Laravel 应用程序在升级到 Apache 2.4 和 PHP 5.5.7 后显示空白屏幕?的详细内容。更多信息请关注PHP中文网其他相关文章!