Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My Rails 3 site is getting hit by crawlers with strange accept headers, trigger exceptions as like

ActionView::MissingTemplate occurred in home#show

Here are some of the accept headers causing issues

text/*
application/jxw
*/*;q=0.1

In these cases, this is being interpreted as the format for the request, and as such, causing the missing template error. I don't really care what I return to these crawlers, but just want to avoid the exceptions.

share|improve this question
This appears to be resolved in Rails 3.1. Discussion here: github.com/rails/rails/issues/701 – tee Nov 22 '11 at 17:11

3 Answers

up vote 1 down vote accepted

Seems this will be fixed in Rails 3.0.4, see https://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets/6022-content-negotiation-fails-for-some-headers-regression - there is also a patch in that ticket.

share|improve this answer

You could rescue from exception like this in your application controller and render the HTML template instead:

class ApplicationController
  rescue_from ActionView::MissingTemplate, :with => :render_html

  def render_html
    if not request.format == "html" and Rails.env.production?
      render :format => "html"
    else
      raise ActionView::MissingTemplate
    end
  end
end
share|improve this answer
1  
Wait what? not request.format == "html"? Did you mean `request.format != "html"? – Ryan Bigg Feb 5 '11 at 11:03
Is there a good way to make requests in my local environment to simulate the issue in question? I'd like to try this fix out but I want to be able to make sure it's working for us before deploying it to production. – blim8183 Feb 21 '12 at 21:52
curl -H 'Accept: image/jpeg' localhost:3000/youraction – todd Dec 30 '12 at 5:03

Because SO prevents adding comments until I have 50 reputation, I must submit a new answer to reply to Ryan Bigg's question in the comments.

not request.format == "html" is more or less the same thing as request.format != "html". and, or and not are logically identical to &&, || and ! - however, they have much lower precedence. So, in this example, the == operator evaluates before the not operator, such that it produces the same result as using !=.

share|improve this answer
Sure, but Ryan most likely meant that the way that not foo == bar is worded makes it much harder to parse (for a human) than foo != bar. – Graham Ashton Dec 13 '12 at 15:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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