On Mon, Aug 20, 2012 at 1:54 PM, Dimitri Maziuk <[email protected]> wrote: > Here's where it broke (most of this code is copied verbatim from the > tutorial , BTW):
So if it's getting a 404, it's not matching on any of your routes. You need to find the cause of that. I would do this to debug: With the development server, print out the details of the request, most importantly the path requested (e.g. SCRIPT_NAME and PATH_INFO in request.environ in your code snippet there). For the same URL, with mod_wsgi, do the same, print out all of the request details. Compare those two, and you should see what is causing the 404 in the request made to apache. -- You received this message because you are subscribed to the Google Groups "pocoo-libs" 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/pocoo-libs?hl=en.
