Stanislav Sinyagin
2010-02-11 14:51:46 UTC
hi,
it works in Jifty-0.91117 from CPAN, and in the current trunk it's broken:
use Jifty::Action schema
{
param 'upload_file' =>
label is 'Upload file',
render as 'Upload',
;
.....
sub take_action
{
my $self = shift;
my $filehandle = $self->argument_value('upload_file');
at this point I cannot read from the file handle. It looks like the filehandle closes immediately after opening.
I'm running lighthttpd+fcgi on a Linux box.
it works in Jifty-0.91117 from CPAN, and in the current trunk it's broken:
use Jifty::Action schema
{
param 'upload_file' =>
label is 'Upload file',
render as 'Upload',
;
.....
sub take_action
{
my $self = shift;
my $filehandle = $self->argument_value('upload_file');
at this point I cannot read from the file handle. It looks like the filehandle closes immediately after opening.
I'm running lighthttpd+fcgi on a Linux box.