Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

guard_entry resulting in redirect loop #14

Open
edriscoll opened this issue Aug 2, 2010 · 0 comments
Open

guard_entry resulting in redirect loop #14

edriscoll opened this issue Aug 2, 2010 · 0 comments

Comments

@edriscoll
Copy link

I love the idea of this wizard but have been unable to get it to work. I've created a simple test Rails application, with one model. Followed the setup stuff, and when I try to create a new instance of the model (with the hope of getting to the first step of the wizard), I get in a redirect loop until the browser gives up:

Processing BooksController#show (for 192.168.1.101 at 2010-08-01 22:48:00) [GET]
Parameters: {"id"=>"step1"}
Redirected to http://192.168.1.112:3000/books/step1
Filter chain halted as [:guard_entry] rendered_or_redirected.
Completed in 3ms (DB: 1) | 302 Found [http://192.168.1.112/books/step1]
SQL (0.1ms) SET NAMES 'utf8'
SQL (0.1ms) SET SQL_AUTO_IS_NULL=0
Book Columns (0.7ms) SHOW FIELDS FROM books

Processing BooksController#show (for 192.168.1.101 at 2010-08-01 22:48:00) [GET]
Parameters: {"id"=>"step1"}
Redirected to http://192.168.1.112:3000/books/step1
Filter chain halted as [:guard_entry] rendered_or_redirected.
Completed in 1ms (DB: 1) | 302 Found [http://192.168.1.112/books/step1]
SQL (0.1ms) SET NAMES 'utf8'
SQL (0.1ms) SET SQL_AUTO_IS_NULL=0
Book Columns (1.2ms) SHOW FIELDS FROM books

This is what my routes.rb looks like, in case you're wondering:
ActionController::Routing::Routes.draw do |map|
map.resources :books
map.connect ':controller/:action/:id'
map.connect ':controller/:action/:id.:format'
end

Here's my model:
ActionController::Routing::Routes.draw do |map|
map.resources :books
map.connect ':controller/:action/:id'
map.connect ':controller/:action/:id.:format'
end

My controller is nothing more than a scaffold with act_wizardly_for :book. I have tried turning off guard, but adding the option :guard => false. When doing that I get the scaffold new. When directly trying to browse to step1, the show method gets run with "id" => "step1".

I'm using Rails 2.3.5 with Ruby 1.8.7 and wizardly version 0.1.8.9. Anybody have any clue what I've screwed up?

Thanks,
evan

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant