Laravel file does not exist - file upload

前端 未结 4 738
臣服心动
臣服心动 2020-12-31 11:50

I am using a form to upload video files. For some reason all I get is the following error:

Symfony \\ Component \\ HttpFoundation \\ File \\ Exception \\ Fil         


        
4条回答
  •  臣服心动
    2020-12-31 12:34

    Probably the problem is the "upload_max_filesize" that has been exceeded (check your php.ini), however it is a good practice to first check if the file is valid.

    if (!$file->isValid()) {
        throw new \Exception('Error on upload file: '.$file->getErrorMessage());
    }
    //...
    

提交回复
热议问题