Laravel file does not exist - file upload

前端 未结 4 701
臣服心动
臣服心动 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:15

    In the php.ini file, change the following:

    upload_max_filesize = 20M
    post_max_size = 20M
    

    This should make it work.

提交回复
热议问题