I have my app email me errors when they occur. I get this about 2-3
times a week with thousands of hits a day to the site. pages/show is a
.html.erb file that renders the partial
_strategicrelationshipacademy.html.erb essentially. Or whatever partial
it calls for. I get this on many different ‘pages’. Obviously the
partial exists if it renders it fine most of the time. What could cause
this?
I have my app email me errors when they occur. I get this about 2-3
times a week with thousands of hits a day to the site. pages/show is a
.html.erb file that renders the partial
_strategicrelationshipacademy.html.erb essentially. Or whatever partial
it calls for. I get this on many different ‘pages’. Obviously the
partial exists if it renders it fine most of the time. What could cause
this?
I finally figured this out. I have an action that only renders html,
but googlebot for instance asks for text format. So, it tries to find
action.text.erb which doesn’t exist.
I added this to my controller and everything works now.
I finally figured this out. I have an action that only renders html,
but
googlebot for instance wants text. So, I added this to the controller
and
everything works!