Hello, all,
I am trying to get any post params using C::Engine::CGI, but no result.

Thsi is my cgi handler:

#!/usr/bin/perl
use strict;
use warnings;
BEGIN {
 $ENV{CATALYST_ENGINE} ||= 'CGI';

 }


use FindBin;
use lib "$FindBin::Bin/../lib";
use lib "../../lib";
use MyApp;

eval {

         MyApp->run;
        };
if ($@) {
        printf("Content-type: text/plain \n\n");
        print $@;
}

1;

and in addition in my application I force using of CGI engine:

use Catalyst qw/
                 -Engine=CGI
                 ConfigLoader
                 Static::Simple
                 StackTrace

                 FormValidator
                 Email
                 Authentication
                 Authentication::Store::DBIC
                 Authentication::Credential::Password

                 Session
                 Session::Store::DBI
                 Session::State::Cookie
               /;
Does anyone have an idea why POST params are not passing?

Thanks in advance.
Best Regards,
Anton Katsarov


_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/

Reply via email to