TokenMismatchException when uploading a Video?

前端 未结 1 1759
轮回少年
轮回少年 2021-01-19 16:55

When uploading a image, laravel goes through everything fine and dandy. No dramas. as soon as I upload a video file, nope. Pops up with:.

TokenMismatc

1条回答
  •  旧时难觅i
    2021-01-19 17:56

    According to your update, you said, "Laravel had a issue with file size".

    If that the case, I don't think is Laravel. It's your PHP configuration.

    Have you update these directives in your php.ini file to fit your need.

    upload_max_filesize = 100M
    post_max_size = 100M
    

    0 讨论(0)
提交回复
热议问题