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

I echo zby's comments. I had the FormFu Controller auto-config-loader clash with another module (the REST Controller) and I was able to get them to cohabitate peacefully by doing the config manually.

  • Comment on Re: Catalyst + FormFu + Test::WWW::Mechanize::Catalyst = Kablooey

Replies are listed 'Best First'.
Re^2: Catalyst + FormFu + Test::WWW::Mechanize::Catalyst = Kablooey
by matija (Priest) on Oct 08, 2009 at 17:24 UTC
    Can you show me how? I tried replacing the Catalyst/FormFu controller with a method of "use HTML::FormFu", and the problem persists.

      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... }