I have a page that loads a list of data rows through a foreach loop. The code is like this:
& lt; Table & gt; & Lt; Thead & gt; ... & lt; / Thead & gt; & Lt; Tbody & gt; & Lt ;? Php foreach ($ data $ datarow) {? & Gt; // The data displayed here is about 10 hidden fields and then & lt; Tr & gt; With 8 & lt; Td> Each & lt ;? Php}? & Gt; & Lt; / Tbody & gt; & Lt; / Table & gt;
When I run with my local machine (IIS), it works fine. Even if $ data contains more than 20,000 elements
But when I publish on the server and try to run it, I get the following error in the Chrome debugger: net :: ERR_INCOMPLETE_CHUNKED_ENCODING Even here That's when there are about 500 elements of $ data edit: less than 500 works fine
Do anyone know how I can solve this error? Do I have to increase the value of a setting on my IIS server?
Thanks in advance
No comments:
Post a Comment