Google App Engine and 404 error - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T22:00:12Zhttp://stackoverflow.com/feeds/question/189751http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/189751/google-app-engine-and-404-error12Google App Engine and 404 errorctuffli2008-10-10T00:51:00Z2009-12-17T04:47:01Z
<p>I've setup a static website on GAE using hints found elsewhere, but can't figure out how to return a 404 error. My app.yaml file looks like</p>
<pre><code>- url: (.*)/
static_files: static\1/index.html
upload: static/index.html
- url: /
static_dir: static
</code></pre>
<p>with all the static html/jpg files stored under the static directory. The above works for files that exist, but returns a null length file if they don't. The answer is probably to write a python script to return a 404 error, but how do you set things up to serve the static files that exist but run the script for files that don't?</p>
<p>Here is the log from fetching a non-existent file (nosuch.html) on the development application server:</p>
<pre><code>ERROR 2008-11-25 20:08:34,084 dev_appserver.py] Error encountered reading file "/usr/home/ctuffli/www/tufflinet/static/nosuch.html":
[Errno 2] No such file or directory: '/usr/home/ctuffli/www/tufflinet/static/nosuch.html'
INFO 2008-11-25 20:08:34,088 dev_appserver.py] "GET /nosuch.html HTTP/1.1" 404 -
</code></pre>
http://stackoverflow.com/questions/189751/google-app-engine-and-404-error/189935#1899359Answer by Alexander Kojevnikov for Google App Engine and 404 errorAlexander Kojevnikov2008-10-10T02:36:02Z2008-10-10T02:36:02Z<p>You need to register a catch-all script handler. Append this at the end of your app.yaml:</p>
<pre><code>- url: /.*
script: main.py
</code></pre>
<p>In main.py you will need to put this code:</p>
<pre><code>from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
class NotFoundPageHandler(webapp.RequestHandler):
def get(self):
self.error(404)
self.response.out.write('<Your 404 error html page>')
application = webapp.WSGIApplication([('/.*', NotFoundPageHandler)],
debug=True)
def main():
run_wsgi_app(application)
if __name__ == "__main__":
main()
</code></pre>
<p>Replace <code><Your 404 error html page></code> with something meaningful. Or better use a template, you can read how to do that <a href="http://code.google.com/appengine/docs/gettingstarted/templates.html" rel="nofollow">here</a>.</p>
<p>Please let me know if you have problems setting this up.</p>
http://stackoverflow.com/questions/189751/google-app-engine-and-404-error/497198#497198-1Answer by Abl for Google App Engine and 404 errorAbl2009-01-30T20:51:28Z2009-01-30T20:51:28Z<p>yup i read that too...it goes on to say something for django which i don't use. or do i?</p>
http://stackoverflow.com/questions/189751/google-app-engine-and-404-error/855877#8558775Answer by Zachary Spencer for Google App Engine and 404 errorZachary Spencer2009-05-13T03:08:55Z2009-05-13T03:08:55Z<p>A significantly simpler way to do this without requiring any CPU cycles is to place this handler at the bottom of your app.yaml</p>
<pre><code>- url: /.*
static_files: views/404.html
upload: views/404.html
</code></pre>
<p>This then allows you to place a static 404.html file in your views directory. No need for a python handler. Anything that isn't handled in your app.yaml already will hit that.</p>
http://stackoverflow.com/questions/189751/google-app-engine-and-404-error/1004370#1004370-1Answer by Shiva for Google App Engine and 404 errorShiva2009-06-16T23:08:57Z2009-12-17T04:47:01Z<p>it throws a fatal error when we try to add the below statements app.yaml</p>
<pre><code>- url: /.*
static_files: views/404.html
upload: views/404.html
- url: /.*
script: main.py
</code></pre>
http://stackoverflow.com/questions/189751/google-app-engine-and-404-error/1717333#1717333-2Answer by hih for Google App Engine and 404 errorhih2009-11-11T18:57:11Z2009-11-11T18:57:11Z<p>Awww. I have the folder spell wrong. Double check the folder and it's name on the yaml file</p>