Laravel文件不存在 - 文件上传

cch*_*cch 6 php upload file laravel

我正在使用表单上传视频文件.出于某种原因,我得到的是以下错误:

Symfony \ Component \ HttpFoundation \ File \ Exception \ FileNotFoundException
The file "" does not exist
Run Code Online (Sandbox Code Playgroud)

在我的控制器中,我有一个验证规则来要求文件,就像这样

$validator = Validator::make(Input::all(),
  array(
    'file'  => 'required'
  )
);
Run Code Online (Sandbox Code Playgroud)

但由于上述规则,我无法正确调试正在发生的事情,因此我最终将其删除,结果产生了上述错误.

men*_*raz 24

在php.ini文件中,更改以下内容:

upload_max_filesize = 20M
post_max_size = 20M
Run Code Online (Sandbox Code Playgroud)

这应该使它工作.