Hi,
When I try to run my catalyst app under Apache2 I get this error message:

[error] Caught exception in MyApp::Controller::Login->form "Insecure
dependency in eval while running setgid at
/usr/local/share/perl/5.8.7/CGI/FormBuilder/Field.pm line 412."

It runs ok in the development server. Is Apache trying to run my app in
taint mode? Why?
Here is my Apache configuration:

<VirtualHost *:80>
   ServerName  myapp.dev
   DocumentRoot /servers/sites/myapp/root
   <Perl>
       use lib '/servers/sites/myapp/lib';
       use MyApp;
   </Perl>
   <Location />
       SetHandler modperl
       PerlResponseHandler MyApp
   </Location>
   <Location /static>
       SetHandler default-handler
   </Location>
</VirtualHost>

Hope someone can welp me with this...

Thanks
--
Jonas
_______________________________________________
List: Catalyst@lists.rawmode.org
Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.rawmode.org/
Dev site: http://dev.catalyst.perl.org/

Reply via email to