application = ErrorMiddleware(application, debug=True) That line is sure to cause problems. Debugging Middleware usually causes issues with mod_wsgi because unless you run a very specific configuration to eliminate multi-threaded requests, though, the error you're getting is that application isn't properly being passed to your ErrorMiddleware.
I think you also need to remove the stanza in development.ini that refers to WebError. Check your apache error log, it might tell you what mod_wsgi is encountering as well. http://code.google.com/p/modwsgi/wiki/DebuggingTechniques -- 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.
