Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
459 views

PSGI, What is it, whats the fuxx about?

I have been trying to decide if my web project is a candidate for implementing usage of PSGI, but i dont really see what good it would do for my application at this stage. I dont really understand ...
8
votes
2answers
202 views

Are there any modern (Moose/PSGI) web frameworks other than Catalyst?

Are there any Perl web-development frameworks other than Catalyst that are: written with Moose natively written for PSGI (not with some PSGI-emulation) Unicode ready/safe - so Perl 5.10+ small, ...
8
votes
1answer
126 views

Plack & taint mode

Is it recommended developing Plack applications (middlewares) with perl's taint mode? If yes, how to start plackup and/or Starman in tainted mode? In the simple CGI script that was easily done with ...
6
votes
2answers
325 views

Multilingual PSGI-web deployment

I plan develop one web application with PSGI/Plack. (probaly with Dancer, but not decided yet). The applicatiion should be utf8, multilingual (with Locale::Maketext) and (ofc) will contain some ...
5
votes
1answer
221 views

How can I test a Dancer application with Test::WWW::Mechanize::PSGI?

I'm not sure on the right way to set up the script app for www mechanize. I did try at least one alternate that works, however I'm trying to pass in configuration with the test so I can make logging ...
4
votes
2answers
297 views

How to setup Apache-like name based virtual server with PSGI Starman

In my previous question I'm asked about the multi-domain solution, but the question was too complex. Now in short: Is possible somewhat setup name based virtual servers with Starman (or with any ...
3
votes
0answers
102 views

PSGI logging (Perl)

Despite rather scant and unclear documentation and an effective How-To for beginners, I have grown to like PSGI and am currently using it in one of my applications. What I would like to know is how do ...
3
votes
2answers
277 views

Why is raising plackup (or starman) memory usage?

I have this simple PSGI application (app.psgi). use strict; use warnings; my $app = sub { my $mem = `ps -o rss= -p $$`; $mem =~ s/^\s*|\s*$//gs; return [ 200, [ 'Content-Type' => ...
3
votes
2answers
88 views

How to can one Plack application affect another one?

I have this: use Plack::Builder; my $config_app = sub {...}; my $app = sub {...} builder { mount "/admin" => $config_app; mount "/" => $app; }; the $config_app saving configuration ...
3
votes
3answers
334 views

PSGI Response: What kinds of filehandles can be expected to work with PSGI, and Plack?

The PSGI specification defines the HTTP response as consisting of three parts, the third of which may be either an array reference or a filehandle. The filehandle may be: An IO::Handle-like object or ...
2
votes
1answer
24 views

How to turn a static CGI-style perl script(xxx.pl) to a dynamic PSGI application?

CGI-style perl scripts are hard to test in this style: def test_it_says_hello_to_a_person get '/home.pl', :name => 'Simon' assert last_response.body.include?('Simon') end (Note: the code ...
1
vote
1answer
60 views

How to deploy bugzilla with psgi on dotcloud?

I want to deploy bugzilla on dotcloud, but the perl environment is psgi. The doc said I must use "modules to add PSGI hooks to legacy CGI or FastCGI applications". I found CGI::Emulate::PSGI module ...
1
vote
1answer
114 views

How can Plack applications log to multiple loggers?

Plack Middleware is very useful, for instance to configure logging targets independent of the application. But I have not found a method to use multiple loggers at the same time: my $app = ...
0
votes
1answer
43 views

Dynamic package loading under plackup with Starman

I am running a web app under plackup with starman and trying to dynamically load and instantiate packages based on user requests. I am using 'require $packageName;' to load the package where ...
0
votes
0answers
59 views

script_name() under CGI::PSGI

It appears that CGI::PSGI does not implement the script_name() method from CGI or returns a blank string. How do I get the script URI from a HTTP request under a PSGI environment? Specifically plackup ...
0
votes
1answer
149 views

PSGI application with Apache2 using Plack::Handler::Apache2 results in 'not found'

first time poster, long time lurker here. Im using a tiny PSGI application in plackup, but id like to switch to Apache2 for subdomains. I run the application with 'plackup ...