[google-appengine] Re: brand new app. 500 error, nothing in the error logs.

2009-08-01 Thread ego008
some erro in your code, try pass in localhost 2009/8/1 Shawn A. boris...@gmail.com Hello Holger, Wow! I could have stared at the file for hours and not noticed that. sometimes all you need is another pair of eyes. Thank you that worked like a charm. Sneaky that it worked in the sdk btw.

[google-appengine] Re: brand new app. 500 error, nothing in the error logs.

2009-08-01 Thread djidjadji
You should move your remote_api handler to the top. It will never be called because the handler above it has the regex /.* 2009/8/1 Shawn A. boris...@gmail.com: Hello Holger, Wow! I could have stared at the file for hours and not noticed that. sometimes all you need is another pair of eyes.

[google-appengine] Re: brand new app. 500 error, nothing in the error logs.

2009-08-01 Thread Jason Salas
Hi shawn, The online tutorial might serve you better and is updated to reflect the latest changes...a little better than the SDK: http://code.google.com/appengine/docs/python/gettingstarted/ Good luck! On 8/1/09, Shawn A. boris...@gmail.com wrote: Hello Holger, Wow! I could have stared at

[google-appengine] Re: brand new app. 500 error, nothing in the error logs.

2009-07-31 Thread djidjadji
why do you skip app.yaml and index.yaml? 2009/7/31 Shawn A. boris...@gmail.com: Hi, I am just getting into google app engines. After pushing my app up to production i am getting a 500 error when i hit my application url. Nothing but requests show up in the logs. So i commented out

[google-appengine] Re: brand new app. 500 error, nothing in the error logs.

2009-07-31 Thread Shawn A.
it skips those by default..according to the documentation On Jul 31, 4:51 pm, djidjadji djidja...@gmail.com wrote: why do you skip app.yaml and index.yaml? 2009/7/31 Shawn A. boris...@gmail.com: Hi, I am just getting into google app engines. After pushing my app up to production i

[google-appengine] Re: brand new app. 500 error, nothing in the error logs.

2009-07-31 Thread Shawn A.
should have included this in my last reply: http://code.google.com/appengine/docs/python/config/appconfig.html#Skipping_Files On Jul 31, 4:51 pm, djidjadji djidja...@gmail.com wrote: why do you skip app.yaml and index.yaml? 2009/7/31 Shawn A. boris...@gmail.com: Hi, I am just

[google-appengine] Re: brand new app. 500 error, nothing in the error logs.

2009-07-31 Thread Holger
Hi Shawn, Try changing your app.yaml to handlers: - url: /.* script: flgs_database.py it's Python and Python sripts have got the ending 'py'. Bye, Holger --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google

[google-appengine] Re: brand new app. 500 error, nothing in the error logs.

2009-07-31 Thread Shawn A.
Hello Holger, Wow! I could have stared at the file for hours and not noticed that. sometimes all you need is another pair of eyes. Thank you that worked like a charm. Sneaky that it worked in the sdk btw. Thanks, -Shawn On Jul 31, 9:15 pm, Holger w...@arcor.de wrote: Hi Shawn, Try changing