views:

70

answers:

1

I'm not sure what I could be doing to get this error. Obviously, I don't think I should be creating the specific file it mentions in my app\views folder. Can anybody point me in the right direction?

+1  A: 

My guess is that your users controller has line, something like this:

render :action => @user

whereas what you want is:

render :action => :new
bjg
Yes, I think that was it. I had ":action => new" and I needed ":action => :new". The problem was in the controller.
Jim