http://qs321.pair.com?node_id=800042


in reply to Re: Catalyst + FormFu + Test::WWW::Mechanize::Catalyst = Kablooey
in thread Catalyst + FormFu + Test::WWW::Mechanize::Catalyst = Kablooey

Can you show me how? I tried replacing the Catalyst/FormFu controller with a method of "use HTML::FormFu", and the problem persists.
  • Comment on Re^2: Catalyst + FormFu + Test::WWW::Mechanize::Catalyst = Kablooey

Replies are listed 'Best First'.
Re^3: Catalyst + FormFu + Test::WWW::Mechanize::Catalyst = Kablooey
by Your Mother (Archbishop) on Oct 08, 2009 at 17:32 UTC

    I think this is all I did but the code has moved a bit (REST is out for now but it was working with it in)-

    package MyApp::Controller::User; use strict; use warnings; use parent 'Catalyst::Controller::HTML::FormFu'; sub register : Local Args(0) Form { my ( $self, $c ) = @_; my $form = $self->form(); $form->load_config_filestem("user/register"); # et cetera... }