HTML repeats after 64Kb of data loaded
Posted by: Terra_Cresta (---.demon.co.uk)
Date: June 28, 2006 08:17PM

Hello,

When rendering pages greater than 64Kb in size the first 64Kb is rendered properly, then it appears to repeat from the beginning of the HTML. Below is an example of the displayed page source at around the 64Kb mark. You can see that is stops rendering the actual HTML and goes back to the start.... "<td ali<html>" being the exact point and the EXACT 64KB mark. The actual HTML being presented to WAMP is just a table row with 6 cells
repeated until the file size reached 64Kb. I'm hoping (guessing!) that this is a simple configuration problem. Thanks in advance for any enlightenment.

<tr><td>a</td><td align=center>b</td><td align=right>c</td><td align=right>d</td><td align=right>e</td><td align=right>f</td></tr>
<tr><td>a</td><td align=center>b</td><td align=right>c</td><td align=right>d</td><td align=right>e</td><td align=right>f</td></tr>
<tr><td>a</td><td align=center>b</td><td align=right>c</td><td ali<html>

<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">


Options: ReplyQuote
Re: HTML repeats after 64Kb of data loaded
Posted by: CyberSpatium (67.170.181.---)
Date: June 29, 2006 12:55AM

can you post your php code please

Options: ReplyQuote
Re: HTML repeats after 64Kb of data loaded
Posted by: Terra_Cresta (---.demon.co.uk)
Date: June 29, 2006 09:48AM

It's plain HTML, renaming the file to .PHP causes it to display perfectly.... so I guess it's Apache related. Anyhow, the code is.....

<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>clrmamepro profiler report</title>
</head>
<style type ="text/css">
body { background-color: #96a096; color: #000000; font-family: sans-serif; font-size: 8pt }
th { background-color: #5a6a5f; color: #cccccc; font-family: sans-serif; font-size: 8pt }
td { background-color: #bbc2bb; color: #000000; font-family: sans-serif; font-size: 8pt }
a:link { background-color: transparent; color: #ffffff; font-weight: bold; text-decoration: none }
a:hover { background-color: transparent; color: #cccc00; font-weight: bold; text-decoration: none }
a:visited { background-color: transparent; color: #880000; font-weight: bold; text-decoration: none }
a:active { background-color: transparent; color: #ff1111; font-weight: bold; text-decoration: none }
</style>
<body>
<a name="top"></a><h3>clrmamepro profiler report<br>created: 2006-06-27 18:15:47</h3><a href="#label191">TOSEC</a><br>
<a name="label191"></a>
<br><h3>TOSEC <a href="#top">^</a></h3>
<table width="100%"><colgroup><col width="50%"><col width="10%"><col width="10%"><col width="10%"><col width="10%"><col width="10%"></colgroup>
<tr><th>name</th><th>version</th><th>missing roms</th><th>total roms</th><th>missing sets</th><th>total sets</th></tr>

<tr><td>a</td><td align=center>b</td><td align=right>c</td><td align=right>d</td><td align=right>e</td><td align=right>f</td></tr>

^^^^ This table row line repeated until the HTML file is 64Kb in size ^^^^^

</table>
</body>
</html>

Options: ReplyQuote


Sorry, only registered users may post in this forum.