Thanks cd34 for your ideas. I use mod_python for other stuff on my server, but that doesn't prevent me from also using mod_wsgi. Especially, as it is already very well supported across python applications and is said to perform better than mod_python. Nonetheless, using mod_wsgi didn't help, I only got 500 codes. No error output in any log file although I even get info messages. I tested on a different system (should have done that much earlier), there I got error output and found, it's the EvalException middleware which I forgot to disable with
[DEFAULT] debug = false That's it. Haven't tested with mod_python any more, but it works well with mod_wsgi. Does anybody have any further idea why I don't get error output on my production system? Thanks again Tim On 25 Apr., 02:29, cd34 <[email protected]> wrote: > LogLevel error > > or, at worst: > > LogLevel debug > > in your apache config might produce more results in your error logs. > > Your config looks right, but, the error logs are probably set to crit > which is why you're not seeing anything of value in the logs. > Remember you can also specify an ErrorLog directive in your > virtualhost to cut down on messages. > > If you are not using mod_python for anything else on the server, you > might also considerhttp://code.google.com/p/modwsgi/ > > -- > You received this message because you are subscribed to the Google Groups > "pylons-discuss" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group > athttp://groups.google.com/group/pylons-discuss?hl=en. -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
