vote up 0 vote down star

I'm using Mongrel in development mode for my rails app. I noticed that regardless of the what the actual HTTP status should be, it is being returned as 200 to the browser. In production mode, the status is correct.

For example, when the record it is not found, the app displays the correct (not found) view, but the status sent to the browser is 200 (and to the layout view if I use request.status). Even when there is a 500 error, the status is also 200. In production mode, everything works correctly. The output of mongrel in Terminal displays the correct status, but it doesn't make it to the browser or layout views.

Is there a setting for the development configuration that changes this?

I'm using Mongrel on Mac 10.5.7 (tested on two different machines). On my production server, I'm using Apache / Passenger on Ubuntu. I'm using Rails 2.2.2.

flag
I realized the problem. I was setting the status using the using the status codes, but I was using quotations for the code. I mistakenly set it as :status => "404" instead of :status => 404. In mogrel, "status" in the http headers was set to the correct code, but it was not getting carried over to the "HTTP Status Code." In Apache / passenger, it was correctly getting distributed to both. Simply removing the quotes fixed it in both enviroments. – James Pierce Jul 10 at 19:18

1 Answer

vote up 0 vote down

I have the same set up. Firebug says the status is 404. alt text

link|flag

Your Answer

Get an OpenID
or

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