You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-dev@quetz.apache.org by Juan Carlos Rodrigo Garcia <jr...@xpyro.com> on 2003/04/01 15:02:58 UTC

1 page Not Found - every 4 page refresh cycle?

Hello, I can't suscribe to mod_python-request@modpython.org,
and I'm having a little problem.

I'm using mod_python 3.0.3 and apache 2.0.44.

I set the PythonHandler to mod_python.publisher

Because I want to use mod_python the PHP,ASP,CFUSION way.
Every script does its own work. So this is my apache setup:

<VirtualHost *>
      ServerName www.devel.in
      DirectoryIndex index.py
      AddHandler python-program .py
      PythonHandler mod_python.publisher
      PythonDebug On
</VirtualHost>

I have serveral pages in my web and everything goes well with 
mod_python auth, uploading...

BUT when I browse pages (scripts) with little content (A tiny
script that outputs very small amount of html), then every 
time I refresh four times or so the tiny script I get one:

  Not Found
  The requested URL /search/index.py was not found on this server.

This NEVER happens refreshing scripts that print long listings,
or lots of HTML data.

I've found this behaviour in two different machines...
One running the RedHat 8.0 distro web server (apache 2.0 + mod_python).
And in my personal computer were I've installed varios versions
of apache 2 and mod_python 3, every set-up acted the same way.


I think that there is a problem with mod_python.publisher loading
tiny scripts or showing little output.


Thanks for all your good work.