Re: [Catalyst] mod_fastcgi config for a Catalyst app.

2015-10-19 Thread Andrew
Many thanks on the advice as regards stopping and restarting, =). I now gather your other bit of advice however, isn't quite the case As per the Catalyst Wiki's documentation, the path has to be real, but the file can be entirely fictional. I just added lines to the includes file referenced

Re: [Catalyst] Simple question about "use Catalyst"

2015-10-19 Thread Denny
On Mon, 2015-10-19 at 14:21 +0100, Andrew wrote: > I ran catalyst.pl to create a new app (at least I think that's how I > did it - it was a couple of days back now), > and when I opened the main pm file, near the top was: > > use Catalyst::Runtime 5.80; > > I'd just installed Catalyst 5.90101

Re: [Catalyst] Simple question about "use Catalyst"

2015-10-19 Thread David Schmidt
My guess, it makes sure you run at least v5.80 possibly because older versions are not supported anymore. I am sure someone will correct me if I am wrong. http://perldoc.perl.org/functions/use.html "If the VERSION argument is present between Module and LIST, then the use will call the VERSION

Re: [Catalyst] Simple question about "use Catalyst"

2015-10-19 Thread Gianni Ceccarelli
On Mon, 19 Oct 2015 14:21:15 +0100 "Andrew" wrote: > What was the significance of 5.80 being written there? It's a general feature of perl, not specific to Catalyst. As your most probably already know, when you say:: use Some::Module qw(some thing); it

[Catalyst] Simple question about "use Catalyst"

2015-10-19 Thread Andrew
I ran catalyst.pl to create a new app (at least I think that's how I did it - it was a couple of days back now), and when I opened the main pm file, near the top was: use Catalyst::Runtime 5.80; I'd just installed Catalyst 5.90101 via cpanm, so wasn't sure why 5.80 was written there (for