in reply to Archive::Zip errors
You'd be able to work out if Archive::Zip is the real cause of your troubles. If not, try to work around using writeToFileHandle while you dig the problem in depth.#!/usr/bin/perl -T use strict; use warnings; use CGI::Carp qw( fatalsToBrowser ); use CGI qw( :standard ); + # Try to open a simple, splendid filehandle open my $fh, ">", "/delme/final_zipfile.zip" or die "open(): $!"; + # Print a greeting message print header(), start_html("Opened successfully"), h1("Opened successfully"), end_html();
Flavio
perl -ple'$_=reverse' <<<ti.xittelop@oivalf
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Archive::Zip errors
by fluffyvoidwarrior (Monk) on Nov 04, 2005 at 11:04 UTC | |
by Anonymous Monk on Oct 20, 2011 at 18:50 UTC |