PHP Connection Reset on Large File Upload Regardless Correct Setting

后端 未结 1 1799
野性不改
野性不改 2020-12-31 14:45

I am having a very common problem which it seems that all the available solutions found are not working.

We have a LAMP server which is receiving high amount of traf

相关标签:
1条回答
  • 2020-12-31 15:21

    The connection coud be terminating at several places:

    1. Apache
    2. Post size limit inside of php.ini
    3. Memory limit inside of php.ini
    4. Input time limit inside of php.ini
    5. Execution time limit inside of php.ini or set_time_limit()

    I would increase all of these, and see if it still persists. But you will have to bounce apache for the changes inside of php.ini to take affect.

    These are also affected by what kind of connection speed the end user has, if it is failing for certain users, it's because their connection is slower than others, and their connection with the server is terminating.

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