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():
application = webapp.WSGIApplication([('/.*', MainHandler)],debug=True)
because in the app.yaml i have:
handlers:
- url: /.*
script: main.py
Thanks for replaying
2011/1/25 Ernesto Karim Oltra <[email protected]>
> 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 URL of your page where the error
> occurs and I'll see it)
>
> On 25 ene, 01:53, fatimah mujallid <[email protected]> wrote:
> > Hi every one
> > I am using python in google app engine application and i am inserting
> html
> > in python as templates.
> > I have multiple pages and i have problem in the links
> > for example i am in index page when i click any link to navigate to any
> > other page it display an empty page without anything in it
> > can you please tell me what is the problem
> > Thanks
>
> --
> 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]<google-appengine%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>
--
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.