I experience the net::ERR_INCOMPLETE_CHUNKED_ENCODING in Chrome by accident when Ajax calls are made inside the application. For instance:
$.get('https://mydomain/myapi/getAll') Object {readyState: 1, getResponseHeader: function, getAllResponseHeaders: function, setRequestHeader: function, overrideMimeType: function…} jquery.js:8625 GET https://mydomain/myapi/getAllnet::ERR_INCOMPLETE_CHUNKED_ENCODING
The back-end returning JSON data uses PHP (5.3.9) with Apache (2.2.29).
These are the response headers:
Cache-Control:no-cache, must-revalidate Connection:Keep-Alive Content-Type:text/html Date:Thu, 30 Apr 2015 14:25:49 GMT Expires:Sat, 26 Jul 1997 05:00:00 GMT Keep-Alive:timeout=5, max=100 Last-Modified:Thu, 30 Apr 2015 14:25:50 GMT Pragma:no-cache Server:Apache/2.2.29 (Unix) mod_ssl/2.2.29 OpenSSL/0.9.8e-fips-rhel5 Transfer-Encoding:chunked
and the only unusual thing I can find in the htaccess configuration is
SetOutputFilter DEFLATE
I don't have access to background content, but I have to guess what really causes the problems here. The same application works without any problems in the WAMP environment, if that means anything. What is most likely to cause this error?
source share