On Tue, Dec 22, 2009 at 7:12 AM, Whitey <[email protected]> wrote:
> Something dumb I am sure, I have a simple app that works fine across > Safari, Chrome, Firefox on local app engine dev setup (sdk 1.3.0) when > I upload/deploy I get no error, when I access the page I get no errors > (or anything) logged but I get a blank page with a status code of 200, > have tried re-deploying, changing version numbers, deleting versions, > etc, no luck, any ideas? Thnks. > > A status code of 200 implies your request was successful; it also means you may need to take a look at your app.yaml file. I experienced a somewhat similar issue when deploying my app; the primary page was an index.html file, and calling it would not work on deployment but functioned fine on the development server. Interestingly, this was resolved by moving the contents to an index.py file, and printing it as a string. After amending the app.yaml accordingly, it worked. Best regards Kaisare, Kapil Sadashiv -- You received this message because you are subscribed to the Google Groups "Google App Engine" 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/google-appengine?hl=en.
