Tagged Questions

Back in the early days of the web there was this wonderful Perl library called CGI, many people only learned Perl because of it. It was simple enough to get started without knowing much about the language and powerful enough to keep you going, learning by doing was much fun. While most of the ...

learn more… | top users | synonyms

6
votes
1answer
209 views

Params::Validate or Params::Check, why should I prefer the one or the other?

It is hard for me to choose between two perl modules - Params::Validate and Params::Check. I am writing a Mojolicious application which should be easily distributable. Generally I mean something like ...
4
votes
1answer
307 views

Example for several (fastcgi/uwsgi/scgi/proxy_pass) Mojolicious apps in the same nginx virtual host?

I have some Mojolicious-based apps which happily run under Apache2 with mod_cgi and mod_fastcgi. The urls are for example: http://example.org/oneapp/path/info?foo=bar ...
4
votes
1answer
480 views

lighttpd + perl + mojolicious =?

Does mojolicious working under the lighttpd web-server? How to cofigure? Does I need setup the FastCGI? It's my first usage of lighttpd.
3
votes
1answer
240 views

Mojolicious::Lite: How to pass parameters when using “redirect_to”;

#!/usr/local/bin/perl use warnings; use 5.014; use Mojolicious::Lite; use DBI; # ... get '/choose' => sub { my $self = shift; my $lastname = $self->param( 'lastname' ); my $sth = ...
3
votes
1answer
247 views

“Dynamic” routes in Mojolicious

I would like to implement something like "dynamic" routes in my Mojolicious app. I have some pre-defined "static" routes and a DB table with URL aliases: '/alias' -> '/URL'. Now I'm defining routes ...
3
votes
3answers
132 views

Difference between '%p' and 'my %p'?

% %p = ('option1' => 'Option 1', % 'option2' => 'Option 2', % 'option3' => 'Option 3' % ); <select name="killer_feature" id="killer_feature" class="select"> % foreach (keys %p) { ...
2
votes
2answers
58 views

Is it possible to overwrite the response data in a Mojo::Message::Response?

In a Mojolicious app I have a route in my Controller code like the following: /account/:id/users The /account/:id part of the route has the following data in it when I get to the users part of the ...
2
votes
3answers
136 views

Mojolicious custom sessions

I am trying to use database sessions with Mojolicious instead of the builtin ones that are working with signed cookies. In the startup subroutine I have something like: my $dbh = DBI->connect( ...
2
votes
3answers
122 views

Mojolicious wildcard placeholders and question mark

The wildcard placeholder (*) is said to match absolutely everything. But I'm afraid that it doesn't... I have a webservice with the following method: get '/*param' => sub { my $self = shift; ...
2
votes
2answers
54 views

ORLite: Unicode-question

Where is the right place to put the sqlite_unicode setting when using ORLite?
2
votes
2answers
113 views

How to delegate calling parameter ($self) to other method

I am learning mojolicious::lite. In router, delegate the parameter to controller, use this code ok: get '/hello/:name' => sub { my $self = shift; ControllerTest::hello($self); }; Should ...
2
votes
2answers
155 views

How assign MojoX::Redis result to variable?

I try to work with MojoX::Redis and I can`t understand how catch result in a variable. In docs used "print" $redis->get(key => sub { my ($redis, $res) = @_; print "Value of ' ...
2
votes
1answer
614 views

Need help with routing in Mojolicious

I have the "Pages" controller with the "show" method and "Auths" controller with the "check" method which returns 1 if user is authenticated. I have "default" page ("/profile"). I need to redirect to ...
2
votes
1answer
420 views

Mojolicious url_for: absolute path

I'm currently trying to port one of my smaller catalyst apps to Mojolicious (just for the fun of it). Say that we are on a page: http://whatever.com/generate. On that page there is a link to for ...
1
vote
1answer
29 views

Globals and Threads in Mojolicious for handling different paths

In my Mojolicious perl code I handle a jobs created and watched from a remote client. I keep the jobs in a array of hashes, which is a global variable. It is then used in handlers of PUT ...
1
vote
2answers
57 views

How can I run mojolicious under Win32::Daemon?

I'm trying to run mojolicious as a Windows Service using Win32::Daemon, but I don't know how to return from the start callback after starting the mojo app. The mojo app begins to listen but the ...
1
vote
2answers
161 views

How to I get the right json-datatype for the autocomplete function?

When I try this, it works as expected: after two characters its shows the matching entries. <!DOCTYPE HTML> <html> <head> <meta http-equiv="content-type" content="text/html; ...
1
vote
1answer
114 views

Mojolicious::Lite - inserting picture question

When I run this script and open http://my_server/picture I get instead the picture the logo-string. #!/usr/local/bin/perl use warnings; use 5.014; use Mojolicious::Lite; get '/picture' => sub { ...
1
vote
2answers
133 views

Mojolicious : syntax-highlighting for inlined templates

Would it be in principle possible to ( additionally ) create something like a TEMPLATE section for inlining the templates to make it easier to create a suitable syntax-highlighting for the template, ...
1
vote
3answers
257 views

Perl Mojolicious - How to make it handle multiple connections at once?

I setup a quick Mojolicious server like this: use Mojolicious::Lite; get '/' => sub { my $self = shift; sleep 5; #sleep here, I'm testing multiple connections at once ...
1
vote
1answer
296 views

How do we unit test a Mojolicious controller?

We have created the following simple Mojolicious controller: package SampleApp::Pages; # $Id$ use strict; use warnings; our $VERSION = '0.01'; use Mojo::Base 'Mojolicious::Controller'; sub home ...
1
vote
5answers
493 views

Why JQuery's .post returns no data?

I post JSON request to remote service. Everything is OK, service works fine and it response to me. But I have no data returned from remote service. How to get data from remote json service by JQuery ...
1
vote
0answers
125 views

Output command to socket without buffering using Mojo::IOLoop

How to do continiously output of command (for me it's long ping) in real-time mode on Mojo server? I'm looking for some example on Mojo::IOLoop. For example, client connects to server and requests for ...
1
vote
1answer
135 views

Converting checkbox to select (perl)

Before: <input type='checkbox' name='killerFeature' id='killerFeature' <%= param('killerFeature') ? ' checked' : ''%> /> Now: <select name="killerFeature" id="killerFeature" ...
1
vote
1answer
182 views

Match any GET path with Mojolicious::Lite

I’d like to match any GET request in Mojolicious::Lite. The code looks like this: get '.*' => sub { my $self = shift; $self->render(text => 'Nothing to see here, move along.'); }; ...
0
votes
1answer
52 views

Ecommerce software for backend API / admin tool only? [closed]

I'm looking for a list of ecommerce software systems that are suitable for backend API / admin UI use only. In other words, I'd like to use an included admin UI tool to manage products, pricing, ...
0
votes
2answers
35 views

Mojo::UserAgent: get only the text

use WWW::Mechanize; my $mech = WWW::Mechanize->new; $mech->get( $url ); say $mech->text; How could I get the same result with Mojo::UserAgent? I tried this, but it doesn't return the ...
0
votes
2answers
45 views

Does Mojo::DOM provide the possibility to use nested syntax?

How could I write this example with the Mojo::DOM module? #!/usr/bin/env perl use warnings; use 5.012; use XML::LibXML; my $string =<<EOS; <result> <cd> <artists> ...
0
votes
1answer
79 views

apache2: how to find out why I get a 403 error?

That is from the apache error_log: [Mon Oct 17 17:55:42 2011] [error] [client 127.0.0.1] (13)Permission denied: access to /index.html denied In /etc/apache2/vhosts.d I've created this file: ...
0
votes
3answers
217 views

Mojolicious::Lite jQuery autocomplete Question

The autocomplete doesn't work: Is the whole approach wrong or have I made only some errors? #!/usr/local/bin/perl use warnings; use 5.014; use utf8; use Mojolicious::Lite; use DBI; my $dbh = ...
0
votes
2answers
102 views

Mojolicious home-test question

I tried to install Mojolicious-1.90 but didn't pass the t/mojo/home.t test. t/mojo/home.t .............................. 1/5 # Failed test 'right path detected' # at t/mojo/home.t line 27. # ...
0
votes
0answers
332 views

How to write Mojolicious::Plugin::Database in Mojolicious::Lite?

Could someone show me, how this script would look like, when written with Mojolicious::Plugin::Database? #!/usr/local/bin/perl use warnings; use 5.014; use utf8; use Mojolicious::Lite; use DBI ...
0
votes
0answers
124 views

Mojolicious + sqlite CRUD + lighty

hi please could you post sample code on how to do CRUD operations in mojolicious using sqlite as a database?also how to run mojolite on lighttpd
0
votes
1answer
141 views

Loading “modules” in Mojolicious

Need for help. Necessary to implement the installation and loading of "modules". "Module" plug-in is located in the file like lib//. I think I should somehow take the search subdirectories lib/ for ...
-2
votes
1answer
71 views

What's the difference between “Ruby on Rails” and “Mojolicious” ? Which is better for a newbie? [closed]

I was studying Ruby & RoR but I've that there is a framework called Mojolicious with Perl. What is the difference? Which is better for a newbie? I don't know a lot about Ruby and Ruby on Rails. ...