internal_error.html?

2005-09-05 Thread Eugene Lazutkin
these URL patterns, in this order: ^$ ^qwerty/ ^asdfgh/ The current URL, 'internal_error.html', didn't match any of these. At that point all relevant data is sent, but instead of end of template (which is a simple static text at that point) I am getting:  HTTP/1.1 404 NOT FOU

Re: internal_error.html?

2005-09-05 Thread Adrian Holovaty
On 9/5/05, Eugene Lazutkin <[EMAIL PROTECTED]> wrote: > I am getting a strange error. I generate relatively long page and browsers > choke on it. It appears that the page is not sent properly. If I wait for > some time I'll get something like that at the end of the page: That's very strange. Whi

Re: internal_error.html?

2005-09-05 Thread Eugene Lazutkin
nd of 404 page requesting internal_error.html? Thanks, Eugene "Adrian Holovaty" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] On 9/5/05, Eugene Lazutkin <[EMAIL PROTECTED]> wrote: > I am getting a strange error. I generate relatively long page and browsers

Re: internal_error.html?

2005-09-05 Thread Eugene Lazutkin
Yep. It depends on size. It seems that web server sends the first part of page up to some limit and stalls for a while. After that it may send the rest or append "internal_error.html" nonsense. Now I have to figure out who is the culprit: Apache, FastCGI server, Django (e.g., FastC

Re: internal_error.html?

2005-09-06 Thread Jason F. McBrayer
On Mon, 2005-09-05 at 18:50 -0500, Eugene Lazutkin wrote: > Yep. It depends on size. It seems that web server sends the first part of > page up to some limit and stalls for a while. After that it may send the > rest or append "internal_error.html" nonsense. > > Now I