A single-file DSL for the Mojolicious web framework for the Perl language.

learn more… | top users | synonyms

0
votes
1answer
97 views

How to Mojolicious::Lite static file downloader?

I'm trying to make a file upload/downloader with Mojolicious::Lite and while the upload section is no problem the download section is causing trouble. This code will let me download small text files ...
1
vote
1answer
78 views

How do I set the cookie expiration for MojoX::Sessions?

Whatever expiration value that I give to expires() or expires_delta(), the cookie expiration is always one hour. How do I change it so that the session and the cookie expiration times match?
0
votes
1answer
264 views

CORS: Always get empty response from Mojolicious::Lite via jQuery.ajax

I'm using jquery to get some data from a Mojolicious::Lite API I'm building. But I can't receive any data from the API via ajax. I can get data via curl though. Update: I can get the data via ajax ...
1
vote
1answer
103 views

Rendering errors in proper format inside under on Mojolicious::Lite

I have an under statement that may generate and error (for instance, authentication error). I use content negotiation all over, and I'd like to return the error inside the under in a proper format. An ...
3
votes
1answer
137 views

How to call action in some other controller in Mojolicious?

I have an application that uses the Mojolicious framework. I have a table in the database that has a list of error response and additional details associated with it. I have created corresponding ...
0
votes
1answer
183 views

Mojolicious lite how to redirect for not found and server error pages to user defined error page

How to redirect user defined error page for not found and server error pages to user define page Mojolicious lite
2
votes
1answer
82 views

How to use common template for mojolocious lite app?

use Mojolicious::Lite; # /with_layout get '/a' => sub { my $self = shift;} ; get '/b' => sub { my $self = shift;} ; get '/c' => sub { my $self = shift;}; app->start; __DATA__ ...