Tagged Questions

Catalyst is an elegant web application framework, extremely flexible yet extremely simple. It's similar to Ruby on Rails, Spring (Java), and Maypole, upon which it was originally based. Its most important design philosphy is to provide easy access to all the tools you need to develop web ...

learn more… | top users | synonyms

1
vote
2answers
44 views

Catalyst Not Accepting DBIx Generated Schema

I am using Catalyst::Plugin::AutoCRUD and am generating a DBIx schema using the instructions provided in the linked CPAN page. Specifically, I copy/pasted the command listed there and changed only ...
0
votes
0answers
8 views

Union of two ResultSets using Helper::ResultSet::SetOperations

I'm kind of new to DBIx::Class. and am attempting to find the union of two ResultSets using the Helper::ResultSet::SetOperations module for a catalyst application. The two individual ResultSets I've ...
0
votes
1answer
44 views

Inlining template in Catalyst/TT

I was wondering whether anyone knows how to inline templates in the DATA section of a module in Catalyst (I'd like to use Template Toolkit) like it seems possible in Mojolicious, where you can do ...
0
votes
1answer
48 views

Catalyst / FCGI: myapp_fastcgi.pl won't work under Windows x64

I'm facing an issue with Calatylst while trying to use the myapp_fastcgi.pl script under windows x64 (Win 2008 R2 and Windows 7). For some reasons when I try to access the script via an http server ...
0
votes
2answers
79 views

What are the differences and performances characteristics of Perl CGI and Catalyst?

I have both used Perl CGI and Catalyst. I know Catalyst is better than Perl CGI. I know the difference is that Catalyst has better URL handling. But what other differences are there? Also, how does ...
1
vote
1answer
47 views

Is there something like Perl's Catalyst routing for node.js?

Perl's Catalyst framework has an excellent URL dispatching/routing mechanism that allows chaining methods together to modularize routing. Through rigorous application of the Scientific Method, I have ...
0
votes
2answers
52 views

Perl Catalyst; configuring session expire time and flash behaviour

I just discovered that when I configure the session plugin of a Catalyst app (Catalyst::Plugin::Session) to expire, it screws with the flash data. More specifically, I'm finding that flash data no ...
1
vote
1answer
43 views

how to update Result folder of Catalyst after change in database

I have created one Catalyst application and I have created Schema and Model using below command perl script/myapp_create.pl model TestDatabase DBIC::Schema MyApp::Schema::TestDatabase create=static ...
1
vote
3answers
117 views

Difference between uri_for and uri_for_action

What is the difference between $c->uri_for and $c->uri_for_action methods of Catalyst. Which one to use? And why?
1
vote
1answer
55 views

Running multiple Catalyst apps through Apache

I have a suse box that holds three Catalyst apps. Ultimately I need to run all three (which in itself is not a problem, each has a different port) through Apache with mod_perl and SSL. I have ...
0
votes
1answer
71 views

match namespace case insensitive in Catalyst controller

__PACKAGE__->config(namespace => 'Hello') Now consider I have above statement in my catalyst controller Hello.pm. This will match http://localhost:3000/Hello in url. But I also want to match ...
0
votes
1answer
60 views

how to use __PACKAGE__->config namespace in catalyst

__PACKAGE__->config(namespace => ''); I have seen this statement in Root Controller Root.pm of my Catalyst application. What I know about this is that, this statement is used to specify root ...
0
votes
0answers
13 views

Catalyst “MessageBox/Alert”

I am a really beginner in Catalyst and I have a quick question - I have created a button on of my Page and I wonder "If you click on the button" a popup message like alert() in JS would come up. ...
1
vote
2answers
82 views

Catalyst equivalent for Rails script console

Is there anything like Ruby on Rails' script console for Perl's Catalyst? From rubyonrails.org: The console command lets you interact with your Rails application from the command line. On the ...
0
votes
1answer
125 views

Apache fastcgi catalyst Bugzilla REST api @INC issue

I am trying to set up Bugzilla REST api (bzapi) but I've hit a roadblock. I'm setting it up as a FastCGI prosess in a virtualhost in apache. I can execute the script from /var/www/bzapi by executing ...
1
vote
2answers
79 views

Why create=dynamic is deprecated?

I was creating a database model using the command given below. script/myapp2_create.pl model TestDatabase DBIC::Schema \ MyApp2::Schema::TestDatabase create=dynamic \ dbi:SQLite:/tmp/database and I ...
5
votes
3answers
118 views

Which Perl module should I use to generate a validating CRUD webform?

Has anyone successfully used something like DBIx::Class::WebForm or CatalystX-CRUD to automagically build a self-validating webform from a database table? I'm imagining a module that reads a database ...
0
votes
2answers
94 views

How to write/update session data before a request end in Perl Catalyst MVC Framework

How can I write or update session data before a request ends in Perl MVC Catalyst Framework. I am using Session::State::Cookie and Session::Store::FastMap I need to ensure that the data is available ...
0
votes
0answers
66 views

How to combine two search_related result sets

I have a table of Locations: London, South East, Midlands etc. I have a table of 'Vacancy Categories': Manager, Technician etc. I have a Vacancy table with a column 'location_id' and a column ...
2
votes
0answers
38 views

Catalyst development server appears to hang

I am doing the usual operation of the inbuilt development server for my Catalyst app: DBIC_TRACE=1 perl script/*_server.pl -d -r -p 3001 2>&1 | tee -a /var/log/cat-dev.log All runs nicely, ...
0
votes
0answers
81 views

Apache, mod_perl, Catalyst - where is the error?

I am trying to run a perl Catalyst app with Apache and mod_perl. When I do an Apache syntax check I get a Syntax: OK. But when I do 'httpd -X' as suggested by daxim below I get simply 'Segmentation ...
1
vote
1answer
85 views

Serving static files from a CDN with Catalyst

I'm trying to serve all static files (js, css, images) from a CDN instead of the /static folder. I started writing my own sub to rewrite image URLs: sub uri_for_image { my ( $c, $path, @args ) = ...
0
votes
2answers
162 views

Module not found despite being in @INC

Perl is complaining that it can't find a module that is right there in @INC. Can't locate <module> in @INC (@INC contains etc.) @INC is set correctly, and the module is right there where it ...
0
votes
2answers
97 views

Perl Catalyst DBIx Cursor Cache - how to clear?

apologises and thanks in advance for what, even as I type, seems likely silly question, but here goes anyway. I have basic Catalyst application using DBIx::Class with an 'Author' and associated ...
1
vote
1answer
93 views

Catalyst $c->req->params empty?

Trying to Catalyse some prototype pages with form fields. My Catalyst controller does not seem to be getting the inputs from the form when it is submitted. I have tried to reduce the template & ...
0
votes
1answer
96 views

Accessing shell environment variables in catalyst web app using Apache/FastCGI

I have a catalyst web application on an Amazon EC2 Linux instance and its content is being served by Apache/FastCGI. Whenever I start a new instance, I need to get the internal IP of the database ...
0
votes
1answer
61 views

Adding a extra field in url but avoiding that field in url handling of Catalyst framework

Suppose I have a url http://www.somesite.com/path/to/catalyst/controller And I want to redirect this to http://www.somesite.com/extra-part/path/to/catalyst/controller This extra-part should only ...
1
vote
2answers
67 views

How do I read server data from a Catalyst::Plugin::Session::Store::File from another app?

I am running two applications on my server. The first is a Catalyst app, configured to use the Session / Session::State::Cookie / Session::Store::File suite of plugins to save some session state on ...
0
votes
1answer
80 views

Catalyst authentication without DBIx

I am adding authentication to my Catalyst application. The app is a port from another system, so I must use the current backoffice for some things. One of those things is the users database. Its not ...
2
votes
3answers
154 views

Moving logic from Template Toolkit to Catalyst

I think that I am using too much conditionals and calculations in the TT templates. I am displaying a result set of items from DBIc. For each item I need to calculate things using the retrieved ...
0
votes
1answer
93 views

Manage missing images in Catalyst/Nginx

in my app there are a lot of pictures that can be missing or lost. A lot of them. In the Catalyst debugger I can see that they are shown as 404, with a full description of the error. I am using Nginx, ...
1
vote
1answer
42 views

Upgrading to Catalyst::Plugin::Cache from Catalyst::Plugin::Cache::FileCache

I am writing a build script to build a Catalyst app and apparently it's an older app since it uses Catalyst::Plugin::Cache::FileCache instead of the newer Catalyst::Plugin::Cache which supports a ...
3
votes
3answers
156 views

How can I use Catalyst and uri chaining with a REST interface?

I'm expecting to receive uri's like /user/*/account/* I've got a user function defined as sub user :Path('/user') :PathPart('') :ActionClass('REST' ) {} then sub user_GET :PathPart('user') ...
0
votes
1answer
77 views

How can I dynamically process all .html files through the Catalyst Framework?

I want to use Catalyst to process all requests: Both html (mixed with Template Toolkit), and those normally intended to be processed by Catalyst. I am aware of Catalyst::Plugin::Static::Simple, but ...
2
votes
1answer
110 views

I have an ajax request and a test calling a Catalyst controller. How do I get the params to show up in the same place in the Catalyst object?

Snippet from the test: my $request = HTTP::Request->new( POST => 'http://192.168.5.130:3000/user' ); $request->content_type('application/json'); $request->content( $query_string ); my ...
0
votes
1answer
69 views

Catalyst config when static data referenced by boilerplate HTML

we want to build a site HABJ (*) starting from some HTML 'demo' pages that have been produced externally : 'lorem ipsum' stuff. I've given these raw HTML files a .tt extension, put them in ...
0
votes
2answers
110 views

For studying Catalyst [closed]

I want to study catalyst MVC freamwork for perl but I don't have any idea about catalyst or MVC freamwork so. from where I have to start..?? can you suggest me a book for that related topics which ...
3
votes
1answer
120 views

What's the easiest way to test a Catalyst REST API

I'm building a RESTful web service, using Catalyst::Controller::REST. Usually for web testing I use Test::WWW::Mechanize, but that seems more appropriate for "GET/POST HTML RPC" testing. Are there any ...
0
votes
1answer
89 views

Ajax Perl Catalyst FastCGI child processes not dying

I have an ajax application built in catalyst running through fastcgi. I am noticing that all of my ajax requests spin up another process and that process sticks around indefinitely. Ideally I would ...
1
vote
1answer
58 views

Develop and deploy Catalyst app in the same machine

I have one Catalyst app running fine with Nginx/Fastcgi in one IP of my server (it has another IP with Apache). It uses port:80 and responds perfectly to different domains directed to the same IP. ...
2
votes
1answer
57 views

Testing a method provided by autoload with Test::More

I have a factory class which provides a bunch of similar methods by using autoload. For a longer list of different object types it can do things like Factory->objects(); Factory->object(23); ...
4
votes
1answer
133 views

Removing Perl Catalyst framework

Is there a simple way to uninstall Perl's Catalyst framework? It seems like there are tons of ways to install it, but not much on cleanly removing it.
2
votes
2answers
658 views

Nginx variables similar to SetEnv in Apache?

I use SetEnv in Apache to set some variables in virtualhosts that I recover in Php using $_SERVER[the_variable]. Now I am switching to Perl Catalyst and Nginx, but it seems that the "env" directive ...
3
votes
5answers
209 views

Template-Toolkit and complex variables

Say I'm working in Perl using Catalyst. I assign an array of hashes to a a variable, ie: my @array = ($some_hash); $c->stash->{foo}->{bar} = \@array; How do I select an element from ...
3
votes
1answer
93 views

How to limit a request to POST in Catalyst

I'm very new to Catalyst and just starting building up a web app to learn some stuff. One thing that I haven't figured out is how to limit the requests to a given controller method to POST (for ...
1
vote
1answer
113 views

Migrate from Mediawiki to a Perl Wiki

Do you know a automated way to easily migrate the database of a Wikimedia Wiki to Mojomojo or another Perl Wiki ?
3
votes
1answer
145 views

Catalyst Controller Questions

I just used catalyst for my first large project and I was left wondering if I used catalyst in the way it was meant to be used. I have Root.pm and inside of that file I put multiple url handlers. ...
1
vote
0answers
107 views

Catalyst Request Upload - Truncating Files

I am using Catalyst Request Upload to upload files with the Jumploader applet on the front end. Everything is fine for files under 10k or so. But if files are larger, I only get the last uploaded ...
2
votes
5answers
133 views

Is it viable to start with Catalyst while learning Perl?

I'm not quite sure that this is on-topic (if it isn't, I'll delete it ASAP =)). I've decided to start teaching myself Perl and how to use it for web development. I've done the same about a year ago ...
0
votes
0answers
106 views

How can I use “ON DUPLICATE KEY UPDATE” in Perl/Catalyst/DBI?

Maybe its too advanced for my apprentice level in Catalyst, but I need to port some functionality from the original system, and it is done using custom queries with the "ON DUPLICATE KEY UPDATE". Can ...

1 2 3 4