Dancer is a lightweight yet powerful web application framework for Perl, inspired by Sinatra. It aims to be simple, flexible, and easy to get to grips with.

learn more… | top users | synonyms

3
votes
1answer
24 views

How do you stop a perl Dancer/Starman/Plack server?

I started a Dancer/Starman server using: sudo plackup -s Starman -p 5001 -E deployment --workers=10 -a mywebapp/bin/app.pl but I'm unsure how I can stop the server. Can someone provide me with a ...
0
votes
0answers
12 views

How can Dancer app process HUP signal to close/reopen logfile

I wrote a Dancer app, with the log config: logger: file logger_format: <%T> %m log_path: '/usr/local/myapp/log' log_file: 'myapp.log' log: debug and start it with: ...
2
votes
2answers
59 views

Dancer: deal with multiple requests simultaneously

Here's my situation: I'm developing a web application using Dancer framework, and I would like to insert some data to the database on the server side from the browser side. The problem is, when the ...
3
votes
3answers
120 views

How to serve robots.txt with Perl Dancer

I am trying to serve a robots.txt using the Perl Dancer web framework. I thought having a route that just returned the text would work, but it seems to be wrapping it in html and body tags. I'm ...
0
votes
1answer
35 views

Approach to serve multiple users concurrently with dancer

For some reason I could not find an answer to the question below, probably because it is just too obvious. During my experiments with perl dancer, I added a route, which just sleeps for 10 seconds ...
1
vote
1answer
75 views

Perl - Template Toolkit - How get list of variables in the template?

I am using Perl with Dancer and Template::Toolkit. I'm trying to create a generic routine that will be passed a template and the HTTP GET/POST parameters. I need to find a way to get a list of the ...
5
votes
1answer
82 views

Dancer randomly hangs when reading GET request

I am playing with perl dancer on Linux and all is nice and dany if the browser connects to the server directly via LAN. However, when I connect via WAN and the browser is IE9, then occasionally the ...
4
votes
1answer
96 views

perl dancer - how pass additional arguments to method hander subroutines?

Is there a way to pass additional variables to a method handler subroutine? I generally dislike using global variables outside the subroutine's scope. I have things like database connection and ...
2
votes
1answer
56 views

perl dancer - “any” method - which actual method called?

Using Perl's Dancer module, if you have an "any" method (which will match get/post/put/delete), how can you determine which actual method the browser used? #!/usr/bin/perl use Dancer; my $instance ...
0
votes
0answers
49 views

How to validate an input parameter using Validate module in perl

we are working on a project where we have two technologies (PERL and PHP) and one Database. PHP connects to the PERL through Dancer Module to get the data from Database. I am trying to implement ...
1
vote
0answers
46 views

How to hold HTTP connection from Dancer Route

I'm using Perl Dancer in a project and I want to implement SSEs http://www.html5rocks.com/en/tutorials/eventsource/basics/#toc-introduction-differences I have a Dancer route that i'm trying to keep ...
1
vote
1answer
44 views

Why isn't Template Toolkit aggregating my counter?

I'm working on a simple Dancer app to log books a person has read, but in my template to show how many books a person has read, I'm stumbling into an error. I'm trying to go through ever row in the ...
5
votes
1answer
169 views

Perl Dancer Auth Solution that Supports API Keys?

I have a dancer web application that is part web-site and part web-service; certain routes on my application should have auth on them. All the auth solutions I've found for a Dancer web app require ...
2
votes
3answers
98 views

Perl Dancer send_file Issue with Images

I have a Perl Dancer web application that uses GD to dynamically create images. I am trying to deliver these images to the user as PNG. For example: package MyApp; use Dancer ':syntax'; use GD; ... ...
0
votes
1answer
52 views

How to create special ROOT_OPS in Template-Toolkit?

I use Locale::TextDomain in a Dancer environment with Template-Toolkit. And yes, I know Dancer-Plugin-I18N and tried it, but I don't wan't to use it! I read Defining_Custom_Virtual_Methods and ...
2
votes
1answer
173 views

How to improve authentication in a Perl Dancer app

I am working on a Perl Dancer web application that needs to accomplish two things in terms of authentication: authenticate users based on Active Directory for access to the application authenticate ...
3
votes
2answers
129 views

Perl Dancer trailing slash

Using the Perl web application framework Dancer, I am having some problems with trailing slashes in the URL matching. Say for example, I want to match the following URL, with an optional Id ...
2
votes
1answer
186 views

Perl dancer and Template Toolkit: Including template within template

I am trying to INCLUDE a template within a template, like so: parent.tt <div class="row-fluid"> <div class="span3"> [% INCLUDE my_sidebar] </div><!--/span--> ...
0
votes
1answer
56 views

using Plack::Middleware::DBIC::QueryLog with Dancer webapp

I am trying to use Plack::Middleware::DBIC::QueryLog inside of a dancer application. The documentation tells me to get the querylog like this: use Plack::Middleware::DBIC::QueryLog; sub ...
4
votes
1answer
320 views

What exactly triggers jQuery ajax success?

I am building some ajax in a Perl web framework Dancer I am not sure it is responding with proper http headers as I cannot trigger jQuery's ajax success handlers from what appear to be otherwise ...
-1
votes
1answer
189 views

Deploying perl Dancer webapps in apache using psgi [closed]

My issue is about deploying perl Dancer webapps in apache/2.2.15 on a centos 6 server. This server will provide many small web applications so I'd like to use a virtual host for each app running the ...
1
vote
1answer
199 views

Dancer : how to share data and waiting response between 2 POST without blocking

I have a rest server written in perl dancer on a VM, this is the workflow : customers POST some json stuff in /post_wait route : the POST should waiting the business processing to return the result ...
1
vote
1answer
118 views

Slash in Dancer token

I would like to interpret, for example a request like this: GET /my/path?foo=bar just as if it was actually rewritten to e.g. GET /?path=/my/path&foo=bar Now I thought I'll be able to ...
1
vote
1answer
161 views

Dancer Under Plackup and Starman; forking leaves defunct starman processes?

As a follow up to my other question here: Forking to Run Code in a Child Process With Perl's Dancer - how do I fork a request running under plackup/starman/dancer without causing the child to be ...
2
votes
1answer
162 views

unable to connect to multiple database using Dancer::Plugin::Database

I am using Dancer::Plugin::Database to connect with database from my dancer application. It works fine for single connection. When i tried for multiple connection i got error. How can i add multiple ...
3
votes
4answers
584 views

Generate unique random strings

I am writing a very small URL shortener with Dancer. It uses the REST plugin to store a posted URL in a database with a six character string which is used by the user to access the shorted URL. Now I ...
1
vote
1answer
132 views

Force Perl Dancer to speak HTTP/1.1

How to set up Perl Dancer to answer with HTTP/1.1 per default? I just started a hello world app, fired my curl using HTTP/1.1 and it answers with HTTP/1.0. foo@deathstar:~/MyWeb-App/lib/MyWeb$ curl ...
0
votes
1answer
216 views

How do I read URL parameters from flex application in Perl Dancer CGI?

I want to know how to pass input parameter to perl cgi . I have a flex application, it will take name and some other details of a person, then i want to call a perl cgi with these details as input. ...
1
vote
1answer
166 views

Forking to Run Code in a Child Process With Perl's Dancer

I have a Dancer app in perl that handles get/post requests. One of my example routes is below: post '/handle_data' => sub { # perform some calculations ... # store some data ... ...
0
votes
1answer
148 views

Dancer DBIC Could not load schema_class

I have a Dancer app that is working. I am using DBIC for the database. I want to add some tables to the database, and so I created new files for those. However, now when I restart the app, I get the ...
2
votes
2answers
118 views

Extensible Markdown-like Module In Perl?

I'm building a Dancer application in perl. My app listens for POST events, stores them in a database, does some calculations and then potentially POSTs to another http endpoint (which renders events ...
2
votes
1answer
155 views

How to use Plack::Middleware::CSRFBlock with Dancer?

I want to protect all forms from CSRF with Dancer. I tried using Plack::Middleware::CSRFBlock, but the error said "CSRFBlock needs Session.". Even if I use Plack::Session, forms didn't have a hidden ...
1
vote
1answer
119 views

Running AnyEvent under Dancer application

I would like to do some non-blocking SSH to a couple of thousand machines that i'm tracking (my own machines), I have a Dancer application up and running, and I'm willing to use AnyEvent::timer to ...
0
votes
1answer
187 views

threads in Dancer

I'm using Dancer 1.31, in a standard configuration (plackup/Starman). In a request I wished to call a perl function asynchronously, so that the request returns inmmediately. Think of the typical ...
0
votes
2answers
244 views

How to shutdown Perl dancer applications nicely

I run several Perl dancer applications at the same time with the same user in FCGI mode (Apache). As I understand correctly, Apache (or any other webserver) will fork a new dancer application if the ...
1
vote
1answer
111 views

Modify Exception Handling using Hooks in Dancer

I'm trying to set up a hook to catch all exceptions and errors thrown from my Dancer application ( an API ) and pass them to a function that sets the HTTP status code and returns the hash ( serialized ...
0
votes
1answer
183 views

Perl Dancer on Apache server using Plack::Runner

I have a Perl Dancer web app which I would like to run on an apache server (on centos 6). I put at the webapp's rootdir a sym link (index.html) to the public/dispatch.cgi script which uses the ...
0
votes
1answer
208 views

Accessing Authorization Header

How do I access the Authorization header of a request with Perl Dancer? I have tested my client and it is successfully passing the Authorization header, but it does not appear in the ...
4
votes
1answer
147 views

How do I properly implement Net::OpenID::Consumer for Google logins and request the user's email?

I've been able to use Net::OpenID::Consumer with success, but when I started requesting the user's email address Google now prompts the user to authorize the sharing of their email address. This ...
0
votes
1answer
645 views

template toolkit - Iterating through array of hashes

I couldn't find the answer to this one on the web. Using Dancer and Template toolkit, I have an array of hashes which I would like to print to a table on my webapp. This is how I send the data ...
0
votes
1answer
467 views

simple form validation in dancer/perl

I am trying to do a simple form validation in perl dancer but I was wondering what would be the best way to validate simple parameters (e.g. field cannot be empty, validity of the email, minimum ...
0
votes
1answer
212 views

Printing a Table from a Perl Data Structure

I have a Perl data structure like the following: %hash = ( table_id => { column_1_header => [ column_value_1, column_value_2, ...
12
votes
2answers
1k views

An explanation of the nginx/starman/dancer web stack

I've been doing web-programming for a while now and am quite familiar with the LAMP stack. I've decided to try playing around with the nginx/starman/dancer stack and I'm a bit confused about how to ...
1
vote
1answer
450 views

Perl Dancer Session Cookies

I am just starting out with Dancer::Session::Cookie, and I have run into some behavior that I am not expecting. I put together a simple Perl Dancer app to authenticate using ...
1
vote
1answer
164 views

How to make a page-specific title in Dancer templates?

I have a standard Perl Dancer app, using Template::Toolkit as rendering engine, with two routes: get '/' => sub { template 'index'; }; get '/foo' => sub { template 'foo'; }; My ...
2
votes
2answers
181 views

How can I get the real client ip on dotcloud?

I use dancer perl for my web on dotcloud. I know the problem is the setting for nginx. But I try my way to add the nginx.conf like this. location / { proxy_pass http://127.0.0.1:80; ...
0
votes
2answers
277 views

Pre-forking Dancer app on CentOS

I have a prototype application (RESTful web service database front-end) that is written using Dancer. As a prototype this runs fine under Apache with mod_proxy, and Dancer's routes work really nice. ...
2
votes
1answer
156 views

How to display an array item in dancer?

I try to display an array item in dancer, here is the code: get '/' => sub { my @rows = ('aaa','bbb','ccc'); template 'crud.tt', {'rows' => \@rows}; }; and the template is: ...
2
votes
1answer
129 views

How can I split the Dancer error log by day?

I am trying to use dancer and starman for my website. And i am succeed in setting the error log into file. Of course i can run a script to move the error log everyday. But I just want to know whether ...
0
votes
2answers
78 views

RYO blog engine - showing tags for several posts

I am writing yet another blog engine for practice, using SQLite and Perl Dancer framework. The tables go like this: CREATE TABLE posts ( p_id INTEGER PRIMARY KEY, p_url VARCHAR(255), ...

1 2