[Catalyst] Canot get application working on IIS7 via FastCGI

David Schmidt davewood at gmx.at
Thu Oct 18 06:48:25 GMT 2012


> Though while we are on the subject of  Catalyst plug-ins, I do get this message in the devel server output when it's started.
>
> [warn] Deprecated 'static' config key used, please use the key 'Plugin::Static::Simple' instead
>
> I've looked at the main application MyApp.pm in the lib folder and the plug-ins loaded are :-
>
> use Catalyst qw/
>     -Debug
>     ConfigLoader
>     Static::Simple
>     StackTrace
>     Session
>     Session::Store::FastMmap
>     Session::State::Cookie
> /;
>
> I've tried putting Plugin::Static::Simple insted but that falls over because it can't locate the plug-in module, I've checked PPM and I have 'Plugin::Static::Simple' Catalyst CPAN module installed so am little stumped especially with the limited beginners knowledge I have of your framework so perhaps you could advise.



Doesnt really matter in this case. It just warns you to use

    MyApp->config(
        'Plugin::Static::Simple' => {
            ...
        }
    );

instead of

    MyApp->config(
        static => {
            ...
        }
    );



More information about the Catalyst mailing list