Unexpected Connection Reset: A PHP or an Apache issue?

后端 未结 8 570
时光说笑
时光说笑 2020-12-10 15:05

I have a PHP script that keeps stopping at the same place every time and my browser reports:

The connection to the server was reset while the page w

8条回答
  •  失恋的感觉
    2020-12-10 15:45

    Differences between 2 PHP configs were indeed the root cause of the issue on my end. My app is based on the NuSOAP library.

    On config 1 with PHP 5.2, it was running fine as PHP's SOAP extension was off.

    On config 2 with PHP 5.3, it was giving "Connection Reset" errors as PHP's SOAP extension was on.

    Switching the extension off allowed to get my app running on PHP 5.3 without having to rewrite everything.

提交回复
热议问题