小编Tim*_*hée的帖子

/ storage/logs中没有现有目录且不可构建:权限被拒绝

我在一个ovh网络服务器上的laravel deploiement有问题.后作
" There is no existing directory at /storage/logs and its not buildable: Permission denied"
" There is no existing directory at /storage/logs and its not buildable: Permission denied"
"There is no existing directory at /storage/logs and its not buildable: Permission denied
"
"There is no existing directory at /storage/logs and its not buildable: Permission denied
"

我有这个答案:
' There is no existing directory at /storage/logs and its not buildable: Permission denied'
我把所有文件放在777 chmod上,但我总是这个答案.

permissions laravel laravel-5

19
推荐指数
6
解决办法
3万
查看次数

如何修复 Laravel 上的“未找到视图”

我做了一个 Laravel 项目。当我去部署它时,我收到以下消息:

View [back.home] not found.
Run Code Online (Sandbox Code Playgroud)

但我的观点是在我的 web.php 上定义的:

Route::get('back/home', 'Back\HomeController@index')->name('back.home');
Run Code Online (Sandbox Code Playgroud)

在我的 HomeController 上:

public function index()
{
    return view('back.home');
}
Run Code Online (Sandbox Code Playgroud)

在部署之前,我做了composer和artisan命令:

  • php artisan cache:clear
  • php artisan route:clear
  • php artisan config:clear
  • composer update

我不知道为什么它不起作用。

php laravel

6
推荐指数
1
解决办法
2万
查看次数

标签 统计

laravel ×2

laravel-5 ×1

permissions ×1

php ×1