html - net::ERR_INCOMPLETE_CHUNKED_ENCODING when trying to show PHP page -
i have page loads list of data rows via foreach loop. code goes this:
<table> <thead>...</thead> <tbody> <?php foreach($data $datarow){ ?> //data displayed here. 10 hidden fields , <tr>'s 8 <td>'s each <?php } ?> </tbody> </table>
when run on local machine (with iis), renders fine. if there more 20,000 elements in $data
but when publish server , try run this, following error in chrome debugger: net::err_incomplete_chunked_encoding. when $data has 500 elements. edit: below 500 works fine
does know how can solve error? have increase value of setting on iis server?
thanks in advance
Comments
Post a Comment