[Catalyst] [OT] catalyst hosting

2015-02-24 Thread Luca Ferrari
Hi,
having a catalyst application, which hosting provider would you
suggest to use for it?
I mean, without starting a flame on advertising, is there anything
providing more support to Perl/Catalyst than others?

Thanks,
Luca

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] Error: You requested a stash, but one does not exist

2015-02-24 Thread Johannes Kilian
Hello John,




On Monday, February 23, 2015, John Napiorkowski jjn1...@yahoo.com wrote:

...The likely reason is that about 9 months ago the stash was moved to the middleware layer, which makes it context bound and you are asking for the stash in application scope





Yes - you are right. Completly forgot about this - while I stuck in developing on Perl 5.18/Catalyst 5.8 until yesterday.

The error was indeed still using stash within application scope. After moving all stash access from application scope into the controller scope (root controller) everything works again as expected. Thanks for your valueable hint.



Regards

Johannes


___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] [OT] catalyst hosting

2015-02-24 Thread Dimitar Petrov
Are you asking for shared hosting? I just love linode and will recommend
those guys

On Tue, Feb 24, 2015 at 1:00 PM, Luca Ferrari fluca1...@infinito.it wrote:

 Hi,
 having a catalyst application, which hosting provider would you
 suggest to use for it?
 I mean, without starting a flame on advertising, is there anything
 providing more support to Perl/Catalyst than others?

 Thanks,
 Luca

 ___
 List: Catalyst@lists.scsys.co.uk
 Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
 Searchable archive:
 http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
 Dev site: http://dev.catalyst.perl.org/

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


[Catalyst] How to specify port of Catalyst::Scriptrunner permanently?

2015-02-24 Thread Johannes Kilian
Hi there, 



Situation: I want to run my Catalyst app on a Windows-Server as a service (via script app_server.pl / Catalyst::Scriptrunner). Doing so, Im unfortunatly not able to specify the http-port via commandline.



Question: Is there an alternative method to specify to port for Catalyst::Scriptrunner than specifying it via commandline?



As the script app_server.pl to start the server only contains the lines

BEGIN {
 ENV{CATALYST_SCRIPT_GEN} = 40;
}
use Catalyst::ScriptRunner;
Catalyst::ScriptRunner-run(BDBInfo2, Server);
1;

I dont understand how the commandline parameters are evaluated - and Im not able to manipulate the commandline parameters within the script therefore.



Thanks in advance ...

Johannes

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] [OT] catalyst hosting

2015-02-24 Thread Luca Ferrari
On Tue, Feb 24, 2015 at 1:02 PM, Dimitar Petrov mita...@gmail.com wrote:
 Are you asking for shared hosting?

Yes

 I just love linode and will recommend
 those guys

I was not aware of this service, I will give a look.

Thanks,
Luca

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] [OT] catalyst hosting

2015-02-24 Thread André Walker
24 de fevereiro de 2015 às 09:43, Luca Ferrari  escreveu: 
 On Tue, Feb 24, 2015 at 1:02 PM, Dimitar Petrov  wrote: 
 Are you asking for shared hosting?
 
 Yes

Neither Linode nor DigitalOcean are shared hosting. I'm a big fan of them too, 
and I also recommend them, but they are VPS providers, which is very different 
from shared hosting.

Shared hosting is like Hostmonster, GoDaddy, etc, and they are not well suited 
to host Catalyst applications.

Besides DigitalOcean and Linode, I have hosted Catalyst apps in Heroku, and 
it's very good too! It's a great option if you don't want to set up a complete 
Linux server, as you would do with a VPS.

Cheers!

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] [OT] catalyst hosting

2015-02-24 Thread Drew Taylor
Hi Luca,

With Catalyst and Plack it's quite easy now to get hosting. You can host
with anyone as long as you can run the catalyst app on a high port and have
a web server (apache, nginx, etc) with proxy or FastCGI support that can
connect to your catalyst app. I'm a fan of Linode and DigitalOcean.

Thanks,
Drew

On Tue, Feb 24, 2015 at 11:00 PM, Luca Ferrari fluca1...@infinito.it
wrote:

 Hi,
 having a catalyst application, which hosting provider would you
 suggest to use for it?
 I mean, without starting a flame on advertising, is there anything
 providing more support to Perl/Catalyst than others?

 Thanks,
 Luca

 ___
 List: Catalyst@lists.scsys.co.uk
 Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
 Searchable archive:
 http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
 Dev site: http://dev.catalyst.perl.org/

___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


Re: [Catalyst] Error: You requested a stash, but one does not exist

2015-02-24 Thread John Napiorkowski
Johannes,
If you have time to add a note in the Upgrading.POD file, feel free to send a 
pull request ;) = perl-catalyst/catalyst-runtime 

 On Tuesday, February 24, 2015 5:12 AM, Johannes Kilian jo.kil...@gmx.de 
wrote:
   

 Hello John, On Monday, February 23, 2015, John Napiorkowski 
jjn1...@yahoo.com wrote:...The likely reason is that about 9 months ago the 
stash was moved to the middleware layer, which makes it context bound and you 
are asking for the stash in application scope  Yes - you are right. 
Completly forgot about this - while I stuck in developing on Perl 5.18/Catalyst 
5.8 until yesterday.The error was indeed still using stash within 
application scope. After moving all stash access from application scope into 
the controller scope (root controller) everything works again as expected. 
Thanks for your valueable hint. RegardsJohannes
___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/


   ___
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/