I work with code written by other people, occasionally I am left somewhat confused and at these times Stack Overflow saves me. Please, save me again.

Our site allows people to upload images and later embed them within text in our site like so:

<img src="http://site.com/image_script.php?p=some_image_identifier"/>

My question is:

If the identifier, "p", does not lead us to an image should the server return "500" or "404"?

I would have thought it should be "404", but that's not what is happening right now.

link|improve this question

Client error or server error? Use 4xx or 5xx – M28 May 23 '10 at 15:46
1  
It should be 404. Seems like some problem with your code. – Shubh May 23 '10 at 15:48
feedback

4 Answers

up vote 11 down vote accepted

500 is an error in fulfilling the request. So if the request processed fine and the file is not found, you should return a 404.

link|improve this answer
Thanks for proving I'm neither a moron nor insane. – Michael Robinson May 23 '10 at 16:02
We try our best :) – Ólafur Waage May 23 '10 at 16:03
feedback

404 would be (imho) more appropriate. 500 indicates a server error. 404 indicates the resource isn't found, which is what you're describing. There is no server error, just an incorrect URL.

link|improve this answer
feedback

If the user enters the wrong script name, it should be 501 (or maybe 500). If they enter the wrong image identifier, it should be 404 since there is simply no corresponding resource.

link|improve this answer
feedback

404 file not found is clearly the obvious decision.

Or 400, bad request because they requested an identifier that did not exist.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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