> > > > For debugging Apache, set MaxClients to 1. > Otherwise you will hit > > different httpd children each request and will > only sporadically see the > > error. > > I set MaxClients and StartServers to 1. Now, after > the first hit, I > always have Internal Server Error. > > Any clues?
Actually for debugging, you are far better off running httpd -X That way it doesn't fork. The parent process will die if your process segfaults. Rather than say respawning another child. And it's easier to run it under a debugger, since you only have the one process to interact with, not two. Mike. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]