[Catalyst] Canot get application working on IIS7 via FastCGI
David Schmidt
davewood at gmx.at
Thu Oct 18 11:33:57 GMT 2012
> As for the Data::Dumper information you requested, you will need to give me more guidance because I can't get it to output anything?
>
> Firstly I cannot find the context variable '$c' , there is a '$ctx' , I assume this is what was meant?
>
> I added
>
> dump($env);
> dump($ctx->request->uri);
> dump($ctx->request->base);
I am just guessing here but what I think you ought to do is
1)
enable debug output of your application by adding the -Debug flag to
your use Catalyst statement
2)
use Data::Dumper;
$ctx->log->debug(Dumper($ctx->request->uri))
...
More information about the Catalyst
mailing list