The 404 errors are for favicon.ico.  /newuser is a 405 error, which
means there's something wrong with the handler in NewUser.py.

Does your CreateNewUserPage handler have a get() method defined?

On Sep 21, 4:02 am, Pranny <[EMAIL PROTECTED]> wrote:
> Hi, My App.Yaml file is as follows
>
> application: felix
> version: 1
> runtime: python
> api_version: 1
>
> handlers:
> - url: /
>   script: Login.py
>
> - url: /newuser
>   script: NewUser.py
>
> When i test it, @ localhost:8080 i get the Login Page, as expected.
> However, when i try @ localhost:8080/newuser i get a 404 error. Can
> anyone explain me the cause of this. I have both the scripts properly
> in the application directory.
>
> This is my webrequest handler in NewUser.py
>
> application = webapp.WSGIApplication([
>     ('/newuser', CreateNewUserPage)
>     ], debug=True)
>
> This is my Console output
>
> INFO     2008-09-21 08:09:33,592 dev_appserver.py] "GET / HTTP/1.1"
> 200 -
> INFO     2008-09-21 08:09:33,655 dev_appserver.py] "GET /
> ftc_transparent.gif HTTP/1.1" 404 -
> INFO     2008-09-21 08:09:33,717 dev_appserver.py] "GET /favicon.ico
> HTTP/1.1" 404 -
> INFO     2008-09-21 08:09:46,530 dev_appserver.py] "GET /newuser HTTP/
> 1.1" 405 -
> INFO     2008-09-21 08:09:46,608 dev_appserver.py] "GET /favicon.ico
> HTTP/1.1" 404 -
>
> Any help is highly appreciated. Thanks and Regards,
>
> Pranny
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to