Missing template with Devise custom registration controller?

Try moving the templates from views/devise/registrations to just views/registrations . (And changing the reference in your code from /devise/registrations/new to just /registrations/new. ).

Up vote 0 down vote favorite share g+ share fb share tw.

When using recaptcha for Devise I have to make a new custom registrations controller and my issue is I get a missing template error when their is an error for the email, password or password confirmation because its hitting a route that doesn't even exist. Template is missing Missing template registrations/new The recaptcha works on its own error and renders back to the same page but not for the others. Class RegistrationsController '/devise/registrations/new' end end end devise_for :users, :controllers => { :registrations => "registrations" } It should be hitting the same page the recaptcha does on errors ('/devise/registrations/new')How do I correct this issue?

Thanks. Ruby-on-rails ruby-on-rails-3 devise link|improve this question edited Sep 11 '11 at 4:13 asked Sep 10 '11 at 21:46Railslearner8232517 96% accept rate.

Try moving the templates from /views/devise/registrations to just /views/registrations. (And changing the reference in your code from /devise/registrations/new to just /registrations/new. ).

Yeah, this was a simple solution, thank you I really appreciate it. – Railslearner Sep 11 '11 at 14:12.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions