How are you calling your .wsgi script? ScriptAlias / /path/to/script.wsgi
or using mod_rewrite? What does the apache error log say that corresponds to the 404? mod_wsgi is pretty helpful with debugging messages. with mod_wsgi, you can touch the .wsgi file to get it to reload, or restart apache. Most daemon methods do that since they cache the code to avoid the startup penalty, which, makes it a bit more difficult to develop your application the way it'll be deployed. If you're doing development, I prefer using paster serve --reload development.ini which reloads each time it recognizes a file has been changed. -- 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.
