On Monday 13 September 2004 19:30, Sebastián Benítez wrote: > Do I have to restart apache each time I change a .ptl? I'm using the > debian unstable version of Quixote. If you run mod_python, the short anser is yes. The long is wait for apache too free up the python modules, and reload.. or tweak your apache to have to fork at each request. This is how mod_python works. But Quixote main feature, is the fact you can use as cgi, or throught medusa or twited. I'm usually use medusa to develop (i love pdb), and at the last minute switch to mod_python. Be this way you have best of the two world. medusa + pdb for debugging and mod_python for production. ByeBye