Re: [Catalyst] separate sessions

2012-12-16 Thread Octavian Rasnita
If you want to have more sessions in the same time in the same application, it means that you want a user to log on for more times, once for each session. In that case that app looks like more apps, so you can create 2 Catalyst apps and mount them on different paths. If you just want to send/re

Re: [Catalyst] The optimal captcha

2012-12-16 Thread Octavian Rasnita
There is no optimal Captcha. All of them block the access for some human users, so Captcha can't make the distinction between humans and non-humans, but only the distinction between sighted humans and anything else. reCaptcha offers an audio alternative for the blind but it is almost uninteligi

Re: [Catalyst] Newbie questions regarding nginx/fastcgi configuration

2012-12-16 Thread Robert Brown
Here's a basic run script I use for my projects, think I got it from the Catalyst wiki pages somwehere... http://paste.scsys.co.uk/219142 On 12/16/2012 10:21 PM, Kieren Diment wrote: On 17/12/2012, at 9:09 AM, Victor Cassen wrote: Hi, I am trying to deploy my first Catalyst application

Re: [Catalyst] Newbie questions regarding nginx/fastcgi configuration

2012-12-16 Thread Kieren Diment
On 17/12/2012, at 9:09 AM, Victor Cassen wrote: > Hi, > > I am trying to deploy my first Catalyst application using nginx, and I am > confused by various sources of documentation as to whether or not I'm > required to run a separate fastcgi wrapper, or whether script/ > myapp_fastcgi.pl *is* my

[Catalyst] Newbie questions regarding nginx/fastcgi configuration

2012-12-16 Thread Victor Cassen
Hi, I am trying to deploy my first Catalyst application using nginx, and I am confused by various sources of documentation as to whether or not I'm required to run a separate fastcgi wrapper, or whether script/ myapp_fastcgi.pl *is* my wrapper. If I do need a separate wrapper, is there one that i