Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ActionView::MissingTemplate after Rails 3.1 upgrade

After upgrading to Rails 3.1.0 and following David Rice's instructions, all of my controllers strangely can't find their views anymore.

# rails s #

Started GET "/units" for 127.0.0.1 at 2011-09-04 07:52:23 -0400
  Unit Load (0.1ms)  SELECT "units".* FROM "units" 

ActionView::MissingTemplate (Missing template units/index, application/index with {:handlers=>[:erb, :builder], :formats=>[:html], :locale=>[:en, :en]}. Searched in:
):
  app/controllers/units_controller.rb:9:in `index'

units_controller.rb:

  # GET /units
  # GET /units.xml
  def index
    @units = Unit.all

    respond_to do |format|
      format.html # index.html.erb
      format.xml  { render :xml => @units }
    end
  end

Of course, the view is there (/app/views/units/index.html.erb; it was working before the upgrade). I feel this is a stupid error, what am I missing here?

like image 558
Jonathan Allard Avatar asked Sep 04 '11 12:09

Jonathan Allard


2 Answers

It looks like you forgot to remove the following line in your development.rb:

config.action_view.debug_rjs = true

This should be removed or commented out when not using Rail Javascript.

See the "jQuery: New Default" on rubyonrails.org for more information on upgrading http://weblog.rubyonrails.org/2011/4/21/jquery-new-default

like image 159
Tom de Vries Avatar answered Nov 17 '22 00:11

Tom de Vries


Like Tom said, I had originally forgotten to remove

config.action_view.debug_rjs = true

in /config/environments/development.rb, but at the time I posted the question, I had done it already.

The thing though (quite stupid) is that I had to restart the server after changing a config parameter. Restart your servers when you change your config settings, kids!

like image 2
Jonathan Allard Avatar answered Nov 17 '22 00:11

Jonathan Allard