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
2010-07-18 21:30:03
Yes, I think that was it. I had ":action => new" and I needed ":action => :new". The problem was in the controller.
Jim
2010-07-19 01:24:54