[google-appengine] Re: The links in my application navigate me to an empty page

2011-01-24 Thread Ernesto Karim Oltra
The problem isn't the links. The problem is the page. Have you seen your logs searching for 403/404 (Page not found, etc.) errors? Use some tool like Firebug or the Developer Tools of Chrome to see what code the server returns so yo can address more precisely the source of your error (or give a

Re: [google-appengine] Re: The links in my application navigate me to an empty page

2011-01-24 Thread fatimah mujallid
Thanks Ernesto I solved my problem i was stuck in this problem for 5 hours and finally found that i forget to add something stupid I have in the main.py this: def main(): application = webapp.WSGIApplication([('/', MainHandler)],debug=True) and i should write it this way: def main():