An MVC web framework supporting a simplified single file mode

learn more… | top users | synonyms

2
votes
1answer
51 views

Parallel requests in Mojolicious application

I have perl application which, for example, parallel searching in google: use Mojo::UserAgent; use Mojo::IOLoop; my $ua = Mojo::UserAgent->new(); my $delay = Mojo::IOLoop->delay(sub { say ...
1
vote
1answer
158 views

Start stop reset timer in perl

Is there a start/stop timer in Perl. I had tried AnyEvent but this is like a one time or recurring timer. Once set, I can reset the timeout interval. I have a requirement where I have to reset the ...
0
votes
1answer
47 views

Timer for Mojo::IOLoop::Stream

I am using Mojo::IOLoop::Stream for streaming from my stream server. I don't want to time out the connection, if the stream is inactive. So i put the timeout to 0, it never times out and closes the ...
-1
votes
0answers
28 views

How to start a simple static file server by Mojolicious(Mojo)? [closed]

I can hardly find a complete sample of starting a basic file server. I read the official doc, but it didn't work for me. Somebody help !!
1
vote
3answers
66 views

Mojolicious Template can't render © character

I found error on Mojolicious Renderer when try to render © character (ascii: 169) (also return error when try to render ascii larger than > 128) Template ...
1
vote
2answers
28 views

storing and retrieving GPS value in SQLIte3

I want to store the GPS values like latitude, longitude, and timestamp value in SQLITE3. my schema is like REAL for latitude and longitude and DATETIME for timestamp value. It was inserted ...
1
vote
2answers
55 views

how to send the http get request with dot in mojolicious

I develop a application in mojolicious framework with jquerymobile. its about updating the GPS values to the SQLite3 database for every 3 seconds. for that I try to send the http Get request to store ...
0
votes
0answers
21 views

cannot locate datetime/format sqlite.pm in @INC

I try to store the GPS coordinates in sqlite3 database. for storing timestamp value from GPS, i have a column name u_time with the datatype DateTime. When i insert the data from gps it will inserted ...
3
votes
1answer
75 views

How to run Mojolicious on OpenShift?

I already tried https://github.com/degtyarev-dm/mojolicious-lite-openshift but no luck it returns 500 error page. Does anyone know how to run Mojolicious on OpenShift ? I also tried PerlDancer ...
1
vote
3answers
95 views

Decode JSON string in Mojolicious that was encoded with JSON.stringify

I am trying to send javascript variable as JSON string to Mojolicious and I am having problems with decoding it on perl side. My page uses utf-8 encoding. The json string (value of ...
3
votes
2answers
179 views

is Mojolicious “morbo” is good for production?

is Mojolicious morbo (development web server) is good enough for production? & is morbo good enough to handle so many http request? or I must use Apache mod_perl for production instead of morbo? ...
2
votes
1answer
69 views

Problems with Git::Repository concerning Umlaut in use with Mojolicious or HTML::Entities

I have a problem while displaying log-entries from git in a website regarding the Umlauts. I don't have an idea where to look for solutions, so I ask for help here. I do think that it might be an ...
1
vote
1answer
47 views

Mojolicious autostart/init() subroutine

Is there a method/feature to write auto-start subroutine/method for all available Mojolicious routes ? Maybe an automatic helper, but I don't know how to do it yet. I think this is useful ...
0
votes
1answer
62 views

How do I bind to onclick events for buttons in Mojolicious?

I'm trying to make a small webapp to control the command-line music player I use (mocp), but I'm having trouble hitting routes when the user presses a button on the page. I expect the problem is ...
0
votes
0answers
51 views

Mojolicious, parsing GET params like ?sort(-blah)

I'm writing a REST-like server that is integrating with dojo toolkit and it's datastore dojo/store/JsonRest. The datastore is connected to a dgrid/OnDemandGrid. When the I click a column in the data ...
1
vote
1answer
83 views

How do you deploy Mojolicious applications onto production servers?

I've been developing my first Mojolicious application. Til now I've been running it from the development directory, but now I want to install on the production servers. mojo generate app produced ...
0
votes
1answer
62 views

mojolicious script works three times, then crashes

The following script should demonstrate a problem I'm facing using Mojolicious on OpenBSD5.2 using mod_perl. The script works fine 4 times being called as CGI under mod_perl. Additional runs of the ...
2
votes
1answer
89 views

using content_for and and ajax/Jquery to partially update webpage

I've been slowly learning Mojolicious and Perl thanks to the great help from those on this site. I have been trying to determine the best way to dynamically update parts of my page based on the ...
2
votes
2answers
147 views

How can I get the port that Mojolicious::Lite chooses?

Joel Berger posted this little program to start a web server to serve local files, and it works great: use Mojolicious::Lite; @ARGV = qw(daemon); use Cwd; app->static->paths->[0] = getcwd; ...
1
vote
1answer
52 views

How can I prevent Mojolicious from character-escaping stash data?

I am trying to send HTML to a template in Mojolicious and am finding that the html is getting replaced with safe strings somewhere along the way. $self->stash(portalHeaderHtml => ...
1
vote
1answer
95 views

How can I see all active sessions in a Mojolicious Lite app?

I'm building an app with Mojolicious Lite and I'm looking to give myself a way to watch any and all data about the active sessions. I'm mostly doing this because this is my first foray into using ...
0
votes
1answer
26 views

Add Static directory to Mojo Lite App

Hell all, I am trying to add a shared static directory to my Mojo Lite app but this does not seem to do the trick. use Mojolicious::Lite; use Mojolicious::Static; # Documentation browser under ...
1
vote
2answers
95 views

What does the `at` method of a Mojo::Dom object do?

Just came across in the following code: use warnings; use strict; use Data::Dumper; use lib './lib/lib/perl5'; use Mojo::DOM; my $dom = Mojo::DOM->new($html); my $table = $dom->at('table'); ...
1
vote
1answer
113 views

Mojo::UserAgent TLS/SSL certificate authentication

I am new to Mojolicious and I am trying to get a Mojo::UserAgent script to use both a TLS certificate authority and a TLS certificate file but certificate file is password protected. I am having ...
1
vote
1answer
65 views

Can't post json in a Mojo::UserAgent request

I can't get the following Mojo::UserAgent call to post JSON to the server: use Mojo::UserAgent; my $ua=Mojo::UserAgent->new; my $json = $ua->post("localhost:6767" => {} => json =>{ ...
0
votes
0answers
43 views

mojolicious no-blocking process in very long process time per request

I use mojolicious as my web framework. but this time , i have a trouble as following: wen user vist the url "/update/vip" action of fetch data from an api and then rebuild the database , ...
2
votes
2answers
88 views

Is it possible to use Mojolicious tag helpers in external JS files?

I am currently working on cleaning up a little web app I've written in Mojolicious. As part of that cleanup I am separating out my javascript into the public directory from my html.ep files. The ...
0
votes
1answer
136 views

Why this Mojolicious websockets example does not work?

I have tried some websockets simple examples to try them out, but no one works for me. Here is one example A WebSocket Mojolicious/DBI Example I run it with plackup on port 5000 and everything should ...
2
votes
3answers
221 views

perl Mojo and JSON for simultaneous requests

I'm usually no Perl coder. However I've got to complete this task. The following code works for me: #!/usr/bin/perl use LWP::UserAgent; use JSON; use strict; my $md5 = $ARGV[0]; $md5 =~ ...
0
votes
0answers
87 views

web interface to update the data in datbase tables

I am writing a web application that provides user friendly forms to add data to database tables. How to design web interface to update the data in database tables? There are some parent and child ...
1
vote
1answer
68 views

Mojolicious, Layouts and Positioning of Javascript

I want to load most of my scripts in my main layout ( i.e jquery). Now from my understanding it is best practice to position scripts at the bottom of my html page. However if we put the script at ...
0
votes
1answer
147 views

How to do it in Mojolicious ? =>Username, Password, Salting, Encrypting, Hash - How does it all work

I am working with Mojolicious web framework to build a small site. I am aiming for strong security. The first step is to secure login information mainly username and password. I want to implement the ...
1
vote
1answer
45 views

Using TAP::Formatter::JUnit with Mojolicious tests?

I have a number of tests for my Mojolicious application and that all works fine, and now I'm trying to get Mojolicious to output to JUnit XML. I've found TAP::Formatter::JUnit which looks like it's ...
3
votes
1answer
80 views

Packaging Perl Mojolicious web application

I've written a small web application in Perl and I want to package it up so others can use it. My application has the following components Various Perl modules from CPAN My own modules A ...
4
votes
1answer
135 views

What is the purpose of a route name in mojolicious?

I have been learning how to program apps using the Mojolicious framework and I am stumped as to why you use route names. For example a route could say $r->route('/cities/new') ...
0
votes
1answer
96 views

How to send an array as a post variable

I'm using Perl and a Perl framework (not sure if that's important). What I'm trying to do is create an arbitrary amount of inputs in a form (so a user would select as many things as they want from a ...
0
votes
0answers
43 views

Inheriting the methods of Mojolicious::Controller without helpers

I want to use a dispatch table within an established websocket connection to handle the various actions a user can take in my app. Basically implementing RPC. This works, provided I place the ...
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
109 views

Mojo::CookieJar - how to load cookies from file

How to load cookies from file in Mojo like this code: my $mech = WWW::Mechanize->new(); $mech->cookie_jar(HTTP::Cookies->new()); if (-e "cookie.txt") { print q[Cookie file: cookie.txt ...
1
vote
1answer
132 views

Mojolicous and Hypnotoad how does it work?

I was hoping that someone would be kind enough to confirm how hypnotoad and workers...well work :) If for example my client code has a loop ( i.e for each ) that calls the same route with a different ...
1
vote
1answer
59 views

How to map nested routes to sub-classes in Mojolicious

I am using Mojolicious and will be building services at: /admin/users/view/1 /admin/posts/view/1 /admin/comments/view/1 How do I create the routes so that the controller matches 'admin/users' and ...
4
votes
2answers
110 views

Session does not expire in Mojolicious

I have a Mojolicious application and a bridge for authentication. This is my scenario: I have a set of standard error response in the database which I query by passing in a value, say, return a 404 ...
5
votes
0answers
424 views

Apache proxyPassReverse and Websockets

I've been working on a Perl Mojolicious project that uses websockets. I'm wanting to launch it on a shared server running apache and use proxyPass and proxyPassReverse to make the url prettier for my ...
0
votes
0answers
162 views

Mojolicious websocket request query string

I'm experiencing unexpected behaviour while trying to access query string parameters in a mojolicious websocket request. Say my request looks like this: ...
3
votes
2answers
159 views

Trouble pinpointing child elements while using Mojo::DOM

I'm trying to extract text from an old vBulletin forum using WWW::Mechanize and Mojo::DOM. vBulletin doesn't use HTML and CSS for semantic markup, and I'm having trouble using Mojo::DOM->children ...
2
votes
1answer
62 views

What modules to use for Perl Client to API which uses JSON-RPC protocol?

I am looking to develop a perl client to an API which uses JSON-RPC. What are the best modules to use for this? Is using Mojolicious possible/ efficient?
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?
2
votes
2answers
244 views

Testing a JSON PUT request in mojolicious

I am creating test cases for my app developed using Mojolicious framework. I am testing the routes for appropriate responses for the REST calls that are made. I use JSON as a means of communication ...
2
votes
1answer
198 views

Parsing HTML with Mojolicious User Agent

I have html something like this <h1>My heading</h1> <p class="class1"> <strong>SOMETHING</strong> INTERESTING (maybe not). </p> <div class="mydiv"> ...
1
vote
2answers
270 views

Replace authenticated user agent login/ page scrape using Perl and Mojolicious

I am trying to port some old web scraping scripts written using older Perl modules to work using only Mojolicious. Have written a few basic scripts with Mojo but am puzzled on an authenticated login ...

1 2 3