Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
- url: /static/images/(.*\.(gif|ico|jpeg|jpg|png))
  static_files: static/images/\1
  upload: uploads/(.*\.(gif|ico|jpeg|jpg|png))

Above is my app.yaml file. It is working on localhost but not working after deploy. I got 404 response in the gae website. Anyone know how to fix it?

share|improve this question
Are you using microsoft as a development environment? – Bounder and a cad Feb 12 at 11:16
3  
Why are you uploading uploads instead of static? – Wooble Feb 12 at 11:21
wait I thought upload is for the path of the image file upload in the website. like the blob image that you created in the website. – tipsywacky Feb 12 at 11:27

closed as too localized by Wooble, Andy Hayden, Eric, Julius, lunaryorn Feb 12 at 18:13

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

up vote 1 down vote accepted

You are trying to upload files from the wrong folder. Try this instead:

- url: /static/images/(.*\.(gif|ico|jpeg|jpg|png))
  static_files: static/images/\1
  upload: static/images/(.*\.(gif|ico|jpeg|jpg|png))
share|improve this answer
1  
works now. thanks! – tipsywacky Feb 12 at 13:03
Was actually @Wooble answer in the comments :) – Bounder and a cad Feb 12 at 15:08
@peterretief True.. but you can't accept a comment as far as I know.. :) – Lipis Feb 12 at 16:01
I know just saying – Bounder and a cad Feb 12 at 16:06

The AppEngine is case sensitive file system, check that the case of the images matachs the file name.


Maybe your files are not uploaded, start with a basic handler to see whats preventing the upload:

- url: /static/images
  static_files: static/images
  upload: uploads
share|improve this answer
double checked it, they are all lower case and looked exactly the same. – tipsywacky Feb 12 at 11:18

Not the answer you're looking for? Browse other questions tagged or ask your own question.