[Catalyst] Upload problem

2008-12-19 Thread Florent Angly
Hi all, I am designing my first Catalyst application. I am using a form to upload some documents. Although it works fine for a file of ~60MB, it doesn't work at all for another file that is almost 3GB. It seems that the form isn't submitted; there is just some very brief activity in the

[Catalyst] System call problem

2008-12-19 Thread Florent Angly
Hi all, My Catalyst application uses an external Perl module that needs to call an external application using the Perl system() command. This Perl module works fine on its own (no error message when the external app is called). However, whenever used from within my Catalyst application

[Catalyst] How to run self-tests from within the application

2008-12-19 Thread Ashley
What am I doing wrong? This code starts to work but hangs (and always times out if a timeout is specified). sub auto :Private { eval { require IPC::Cmd; require File::Find::Rule; }; } sub index :Path :Args(0) { my ( $self, $c ) = @_; my @tests =