Re: each request results in 2 hits on web server

2007-05-02 Thread Enrico
I knew it! ;) Tricky! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PR

Re: each request results in 2 hits on web server

2007-05-02 Thread omat * gezgin.com
Thanks Enrico, it was an emtpy css left in the base template... On 2 Mayıs, 17:41, Enrico <[EMAIL PROTECTED]> wrote: > I got the same situation a long time ago... > > After a lot of headaches, I've noticed that I had an empty image tag, > so the browser calls the current page twice, one time f

Re: each request results in 2 hits on web server

2007-05-02 Thread Enrico
I got the same situation a long time ago... After a lot of headaches, I've noticed that I had an empty image tag, so the browser calls the current page twice, one time for the page itself, another for the image with empty "src". I bet your problem is almost the same. Try checking the embedded im

each request results in 2 hits on web server

2007-05-02 Thread omat * gezgin.com
Hi all, I am running the latest svn version on development web server and in one of my applications, for each request, the view function is called twice. Whether the request that triggers the view function is GET or POST, another GET request follows the original and the view function is called on