[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. : > > 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 everything but the

[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 wrote: > why do you skip app.yaml and index.yaml? > > 2009/7/31 Shawn A. : > > > > > > > Hi, > > > I am just getting into google app engines. After pushing my app up to > > production i am getting a 500 error

[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 wrote: > why do you skip app.yaml and index.yaml? > > 2009/7/31 Shawn A. : > > > > > > > Hi, > > > I am just getting into google app engines

[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 wrote: > Hi Shawn, > > Try changing your app.ya

[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. > > 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, > -

[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. : > > 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 >

[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. wrote: > > Hello Holger, > > Wow! I could have stared at the file for ho