> 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 => {
...
}
);
_______________________________________________
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/