[google-appengine] Re: Refresh needed on every page load?!

2009-01-06 Thread Marzia Niccolai
Hi, This is due to the fact that you are missing: if __name__ == "__main__": main() at the end of your application file. It's due to the way that App Engine does App Caching: http://code.google.com/appengine/docs/python/appcaching.html -Marzia On Tue, Jan 6, 2009 at 9:33 AM, Stirman wrote:

[google-appengine] Re: Refresh needed on every page load?!

2009-01-06 Thread Stirman
Ahh, yeah that looks like it did it! Thanks! Also, not sure if it's related, but at some point my app stopped working without the www. ? Related? On Jan 6, 11:50 am, Marzia Niccolai wrote: > Hi, > > This is due to the fact that you are missing: > > if __name__ == "__main__": >   main() > > at

[google-appengine] Re: Refresh needed on every page load?!

2009-01-06 Thread Marzia Niccolai
Hi, This is a separate issue. Google App Engine stopped supporting naked domains, and in order to get them to work at all, you would need to set up a 302 redirect to 'www' with your hosting provider: http://code.google.com/appengine/kb/commontasks.html#naked_domain -Marzia On Tue, Jan 6, 2009 a

[google-appengine] Re: Refresh needed on every page load?!

2009-01-06 Thread Stirman
Got it, thanks again Marzia! On Jan 6, 12:35 pm, Marzia Niccolai wrote: > Hi, > > This is a separate issue.  Google App Engine stopped supporting naked > domains, and in order to get them to work at all, you would need to set up a > 302 redirect to 'www' with your hosting > provider:http://code