Hello,
I have an application and it is working like a charm on a win32
machine with development server. The problem occurs when I uploaded it
to app engine. It seems it couldnt find my static folder contents. It
responds 404 when I am trying to get css files. Here it is app.yml

handlers:

- url: /media
  static_dir: ./media


- url: /favicon\.ico
  static_files: ./media/favicon.ico
  upload: ./media/favicon.ico

- url: /robots\.txt
  static_files: ./templates/robots.txt
  upload: ./templates/robots.txt

- url: /update
  login: admin
  script: django_bootstrap.py

- url: .*
  script: django_bootstrap.py

templates directory is django directory and there is nothing about it.
All problem is related with media folder. Any idea?

--~--~---------~--~----~------------~-------~--~----~
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 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to