dsaeyrq451928 2015-04-28 05:31
浏览 57
已采纳

为什么HTML表单停止处理大文件?

I have created a upload form It's working fine while I am uploading small files. The html form is not working When I am trying to upload large files. Have you ever experienced this?

  • 写回答

2条回答 默认 最新

  • dsjuimtq920056 2015-04-28 05:36
    关注

    Depending on you php version, you could try something like:

    ini_set('post_max_size', '32M');
    ini_set('upload_max_filesize', '32M');
    ini_set('memory_limit', '32M');
    

    just replace "32" with your desired maximum size.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?