0
votes
0answers
6 views
How do I grab all the request parameters in Catalyst?
Specifically I'm trying to capture all the POST parameters from a payment gateway as a single string and then parse them looking for the string 'ERROR'. I'm aware there's a $c->req …
2
votes
3answers
77 views
Is there a way to force $c->uri_for in Catalyst to generate a URI that begins with https?
I've written a web application using Catalyst that has a lot of forms and needs to run over https. There are no hard-coded URLs, everything uses $c->uri_for or $c->req->ur …
1
vote
2answers
40 views
How do I create a session in Catalyst?
Trying to figure our how to create, store and retrieve session info in Catalyst. Any suggestions?
1
vote
1answer
42 views
How can I use mysql bit from using DBIx
Hi,
I am trying to access a mysql bit field in my catalyst app. Here is the table info:
SQL:
create table foo{
...
mybitField bit(1) NOT NULL default b'0'
}
My mapped table: …
1
vote
3answers
82 views
How do I use Catalyst’s auto and begin?
I want two special methods:
one that runs for all URLs
one that runs only for a specific path (/admin)
I thought the most general would be using begin, and the method for /admi …
5
votes
2answers
96 views
What are best practices for deploying a Catalyst application to a production server?
What is a good way to deploy Catalyst applications to a production server? Currently I simply have a FastCGI dispatch script in the root of the repository and when I want to update …
1
vote
3answers
75 views
How can I configure a Catalyst application for different servers?
I am planning a Catalyst application, that will be deployed over a number of servers. It will be used internally by support staff to control aspects of an operational system that r …
3
votes
3answers
114 views
How should I best structure my web application using job queues [and Perl/Catalyst]?
Hi,
I'm writing a web application using the Catalyst framework. I'm also using a Job Queue called TheSchwartz.
I'm wanting to use a job queue because I'm wanting as much of the …
0
votes
0answers
28 views
Configuring form_path in Catalyst::Controller::Formbuilder
Using the Catalyst::Controller::FormBuilder module to handle forms in a Catalyst application.
The documentation says you can set the form_path like this:
form_path => File::Spec- …
1
vote
1answer
80 views
Why can’t my Catalyst application read my Template Toolkit files?
I am trying to get the Catalyst framework to work using Template Toolkit, and I'm having issues with Template::Provider. I've isolated the issue to calls to stat. In Template::Prov …
2
votes
3answers
350 views
What’s the right way to display a DBIx::Class ResultSet in my Catalyst project that uses Template Toolkit?
Given a DBIx::Class resultset, for example:
my $rs = $c->model("DB::Card")->search({family_name => "Smith"});
the tutorials I've read use the stash to pass an arrayref …
1
vote
1answer
69 views
How can I integrate parts of Catalyst into a legacy webapp?
I'm struggling with a classic legacy project: manual URL parsing and composition, manual routing etc. Knowing a bit of Catalyst I long for at least some of the concepts, for exampl …
4
votes
1answer
74 views
Making Catalyst calls from the model?
I'm using Catalyst with Catalyst::Plugin::Authentication and
Catalyst::Plugin::Authorization::Roles and am wondering if there is a better
approach to adding an attribute to a model …
0
votes
3answers
101 views
Why is my Catalyst application slow to restart?
Hello! Each time I build a Catalyst application I come to a point where the application gets painfully slow to (re)start, the delay is about 10 seconds. Today I figured the delay i …
4
votes
4answers
172 views
What’s wrong with using a framework that has a lot of dependencies?
Hi, all.
I recently told a friend that I was starting to learn Catalyst (Perl) and he fairly strongly emphasized that because Catalyst has so freakin' many dependencies, I should …
