Tagged Questions
0
votes
1answer
23 views
Devise routing error “No route matches [GET] ” for all routes
I recently installed devise (migrated from restful authorization), and when I tried to check the site, I got the following error No route matches [GET] "/", this error came for every URL I tried.
...
1
vote
2answers
161 views
Rails 3 routing error, User class with Devise::OmniauthCallbacksController
I'm trying to create a profile page for my users, but I get stuck as soon as the user logs in, due to routing error. Even if I try to load the first page, I get the same problem again. When I do a ...
1
vote
0answers
74 views
Devise /users/confirmation route
Cant Confirm email, with devise.
route.rb
devise_for :users, :controllers => { :sessions => "users/sessions" ,:omniauth_callbacks => "users/omniauth_callbacks" } do
post ...
0
votes
1answer
70 views
Rails devise after_sign_up_path redirect
I have in my app two models for sign_in. Also i didn't generate any my controller for devise, all is build-in. My ApplicationController is such:
def after_sign_in_path_for(resource)
case ...
0
votes
1answer
74 views
How to use both Omniauth_callbacks controller and custom devise registrations controller
I have a custom registrations controller for devise set up, which is this:
devise_for :users, controllers: {registrations: "registrations"}
and in the controller:
class RegistrationsController ...
3
votes
1answer
558 views
“stack level too deep error” on every change of routes.rb [closed]
Everytime I change my routes.rb I get a "stack level too deep error" on any first request and afterwards I get a "routing error" until I restart my development server. After a restart everything works ...
0
votes
0answers
34 views
Devise admins routing issue
Configured 2 devise models. One for Users another for Admins
In devise.rb :
config.scoped_views = true
Anytime I try to access
http://localhost:3000/admins/sign_in
or ...
0
votes
1answer
79 views
Devise routing, i get “Something went wrong” error
Im new to rails and im having troubles figuring out the routing in rails 3 with devise
When i rout to the users page i get this ugly error : http://s9.postimage.org/nlyxhlk5b/Devise_routing.png
in ...
0
votes
3answers
261 views
Ruby on Rails: Routing error
I am having trouble deleting and showing user records.
Here is my routes.rb
FinalApp::Application.routes.draw do
resources :users
devise_for :users, :controllers => { :registrations => ...
1
vote
1answer
189 views
How to fix broken devise routing under journey 1.0.4
I began troubleshooting my "sudden" broken routes problem in this SO question:
Devise /users/sign_in redirecting to wrong controller and with help I was able to isolate the issue to the upgrade from ...
0
votes
1answer
171 views
Why am I getting no route matches for a nested resource that outputs properly to rake routes?
I'm using Devise. I'm updating a collection of Log Entries.
My routes look like:
devise_for :users
resources :users do
resources :exercises do
resources :log_entries
end
end
...
0
votes
2answers
730 views
Devise and I18n - reset password routing issues
I added I18n to my RoR app that is using Devise and I am now getting an error if I try to do a password reset. The error is:
Routing Error
No route matches {:action=>"edit", ...
1
vote
4answers
2k views
ActionController::RoutingError (No route matches [GET] “/users/sign_up”)
I'm using devise to manage user accounts in my rails app. It has been working well in my development environment. I just pushed to Heroku and am getting "The page you were looking for doesn't exist" ...
0
votes
3answers
582 views
devise routing error edit_user_registration_path
I get the following error trying to access <%= link_to('Edit registration', edit_user_registration_path) %>.
Routing Error
No route matches {:action=>"edit", :controller=>"profiles"}
Try ...
0
votes
1answer
742 views
Routing Error Try running rake routes
I got 2 diferents message but whit the same error, Im using a devise for users... Here is my routes.rb
Estaciones::Application.routes.draw do
root :to => "static_pages#home"
match '/contact', ...
0
votes
1answer
60 views
How do I nest devise users with other models?
I just made a new app, and am wondering how I would route it. A user has_many companies,but how how do I route it so? I am using devise.
::Application.routes.draw do
devise_for :users do
...
1
vote
1answer
919 views
Devise: Redirect to previous page after authenticating user? (request.referer results in loop)
I am using Devise and Omniauth for facebook authentication. I am trying to redirect the User to the previous page after the User logs in either with Devise(regular) or Omniauth(fb).
...
0
votes
1answer
164 views
strange devise routing error on loading partial “ No route matches {:controller=>”devise/home“, :action=>”lng“, :locale=>”en“} ”
When loading below partial Im getting strange routing errors for devise.
#lng_select
= I18n.name_for_locale(locale)
#lngs
#lngs_col1
%ul
%li
= link_to "English", :controller => ...
0
votes
1answer
220 views
User Profile Controller Rspec Test Fails due to route
I'm having a problem testing my new user profile page with Rspec. It's working through the browser, but Rspec is blowing up.
I'm using devise with a separate controller for editing profile fields.
...
1
vote
0answers
450 views
newbie: Rails 3.2 + Devise subdomain issues with undefined method `registration_path
When using subdomains with rails 3.2 and devise latest version I get issues with non existent paths probably because I load them under subdomain.
My routes:
# DEVISE ...
0
votes
1answer
395 views
Rails 2.3.8 routing equivalent of Rails 3 match
What is the equivalent of match 'aliased/route/here' => 'pointed/route/here'?
I'm banging my head on the wall here, because I can't get Devise to work with different login url's for the same ...
0
votes
1answer
232 views
Change devise route - id to username
How can I change the devise route from an id to username?
I want the path to be something like
http://www.site.com/users/username
instead of
http://www.site.com/users/id
In my view:
...
0
votes
1answer
495 views
Rails 3 + Devise - How to get nested resources / routes to work?
In my routes.rb file, the only entries I have are:
devise_for :users, :path => "accounts"
resources :users do
resource :profile
end
but when I run "rake routes" I can see that there are still ...
1
vote
1answer
306 views
Rails 3 /devise seems to ignore custom controller
Using devise with Rails 3 app, I have read wiki/docs on how to customise the after sign up route, I am using confirmable module, so I think I need to override after_inactive_sign_up_path_for
I think ...
2
votes
1answer
259 views
Devise custom routes slippery slope
I started using custom routes w/Devise so that I could have my 'Sign In' and 'Sign Up' routes go to the same page. However, as soon as I followed the instruction from Devise about custom routes, it ...
1
vote
2answers
220 views
Devise not redirecting to signin page on invalid attempt with custom routes
Using Devise and custom routes, whenever the user has a invalid signin attempt (wrong pass), then Rails isn't redirecting back to the sign-in page. If I don't use custom routes, then it works fine. ...
0
votes
1answer
81 views
Routing error with registration controller using devise
I want to display email confirmation instructions to user after the sign up.
I overridden after_inactive_sign_up_path_for
def after_inactive_sign_up_path_for(resource)
awaiting_confirmation ...
0
votes
1answer
242 views
Not able to route using after_inactive_sign_up_path_for
I overridden RegistrationController my_devise/Registration controller
i overridden the following methos:
def after_inactive_sign_up_path_for(resource)
awaiting_confirmation_path
end
I also have ...
0
votes
1answer
463 views
Devise Signout Routing Error
I'm using Devise 1.5.1 in a Rails 3.0.3 app. It works well, with one exception: The signout link gives me this error:
Routing Error
uninitialized constant UsersController
The link ...
2
votes
2answers
587 views
Devise not generating registration paths/ routes
I have created a new project using devise login according to Ryan Bates' railscast.
It does not have the registration routes (unlike a previous project I made, with exactly the same steps)
This image ...
2
votes
1answer
1k views
Route for custom action in controller inheriting from Devise::SessionsController
I have a session controller which inherits from Devise::SessionsController:
class SessionsController < Devise::SessionsController
skip_before_filter :authenticate_user!, :only => ...
0
votes
1answer
218 views
Routing Error with sign_out in devise in rails 3.0.9
I've gone through many other stack overflow posts (e.g. this one: No route matches "/users/sign_out" devise rails 3), but I've not found anything that works.
Here's my view:
<%= ...
1
vote
1answer
966 views
RoutingError uninitialized constatnt
I want to use token_authenticatable in my application (using Devise).
Using this answer I added class Users::SessionsController in file app/controllers/users_sessions_controller.rb (is file location ...
0
votes
1answer
666 views
Routing error using Devise on Rails 3.0.9
I followed this: https://github.com/plataformatec/devise
gem install devise
rails generate devise:install
rails generate devise User
rails generate devise:views
Added in ...
31
votes
5answers
5k views
How do I remove the Devise route to sign up?
I'm using Devise in a Rails 3 app, but in this case, a user must be created by an existing user, who determines what permissions he/she will have.
Because of this, I want:
To remove the route for ...
14
votes
2answers
2k views
How to write controller tests when you override devise registration controller?
I wish to override the Devise::RegistrationsController to implement some custom functionalality. To do this, I've created a new RegistrationsController like so:
# ...
4
votes
6answers
1k views
How-to: Devise after_sign_up_redirect?
I tried to follow the instructions here (GitHub Devise Wiki) but it's not working for me.
I'm trying to get Devise to redirect to /welcome after user signs up. I created a Registrations controller ...
2
votes
2answers
479 views
error setting user_root for devise redirect
Goal
When user submits the devise "edit registration" form, I want to redirect to users#show rather than the site's root.
Problem
Following Devise's instructions has not worked. I don't want to ...
1
vote
1answer
486 views
Member Routes with Devise
I had these routes when I used my own custom authentication system:
resources :users do
member do
get :following, :followers
end
end
Now with devise I need to switch to:
devise_for :users
...
2
votes
1answer
2k views
undefined method `devise_for' in rails action controller
I created a model user with rails generate devise user and then rake db:migrate and then rake routes. Once i did that i know get a error in my home index being a action controller exception. saying:
...
0
votes
1answer
115 views
routing problem with startpage in rails3
I deleted the Index.html in my /public/ folder. I added a "application" folder in my views.
In it I put a new index.html.erb. This I want to be my startpage/homepage.
In my new "index.html.erb" I ...
0
votes
1answer
902 views
Devise current_user vs user_session
I'd like to limit a users scope, once authenticated, to a specific namespace. But they'll be dynamic (ie not a named route). example:
/rails/redteam/
/rails/blueteam/
/rails/greenteam/
or perhaps ...
1
vote
3answers
2k views
How to use current subdomain in url helpers
I have a url helper from Devise as follows:
account_confirmation_url(@resource, :confirmation_token => @resource.confirmation_token)
How do I make it create the url with the current subdomain ...
0
votes
2answers
798 views
Questions on routing in Rails 3 with Devise
I have a few related questions. I am new to Rails 3 after taking a year-long break from Rails in general.
I am using Devise for authentication and I have a controller and model called 'User'.
So, I ...
22
votes
5answers
19k views
Devise Custom Routes and Login Pages
I'm trying to get Custom Routes working in my Rails application (Ruby 1.9.2 with Rails 3).
This is my config/routes.rb file
match '/dashboard' => 'home#dashboard', :as => 'user_root'
...
3
votes
2answers
5k views
Using devise with Rails 3 beta
I'm currently trying to use Devise 1.1.pre3 as authentication in my upcoming project, but I can't get it to work properly.
I have done everything it says in the documentation, installed warden and ...