Re: Problem with uploader

2008-11-18 Thread Matthew Whipple
On Sun, 2008-11-16 at 21:31 -0500, Adam Jimerson wrote: > On Sunday 16 November 2008 9:10:19 pm you wrote: > > > > > You'll want to look in the error log to see what is there. > > > > Sean > > All the Apache error logs says is "print () on closed Filehandle OUTFILE at > /srv/www/cgi-bin/upload l

Re: using cgi.pm to create and interpret textboxes

2008-11-18 Thread marys
On Nov 11, 10:46 am, [EMAIL PROTECTED] (Dermot Paikkos) wrote: > Hi > > > > > -Original Message- > > From: marys [mailto:[EMAIL PROTECTED] > > Sent: 11 November 2008 11:20 > > To: [EMAIL PROTECTED] > > Subject: using cgi.pm to create and interpret textboxes > > > Hello: > > Can anyone tell

Re: what is the best / latest .CGI to handle safe form parsing?

2008-11-18 Thread Sean Davis
On Mon, Nov 17, 2008 at 8:04 PM, Lou Hernsen <[EMAIL PROTECTED]>wrote: > what is the best / latest .CGI to handle safe form parsing? > CGI.pm? I'm not sure what you are asking, otherwise? Sean

Re: Problem with uploader

2008-11-18 Thread Adam Jimerson
Matthew Whipple wrote: > > > The die message would most likely be written into the server's log. A > quick fix to more easily get the error messages would be using > CGI::Carp, a "use CGI::Carp qw(fatalsToBrowser)" should show you the > error on the page. Using CGI::Carp didn't produce any err

Re: Adding CSS to a CGI script

2008-11-18 Thread vendion
On Nov 8, 12:35 pm, [EMAIL PROTECTED] (Bill Stephenson) wrote: > On Nov 8, 2008, at 10:39 AM, Adam Jimerson wrote: > > > start_html > > This is from the CGI docs: > >     print start_html(-title=>'Secrets of the Pyramids', >                              -author=>'[EMAIL PROTECTED]', >              

Re: Problem with uploader

2008-11-18 Thread vendion
On Nov 17, 1:54 am, [EMAIL PROTECTED] (Owen) wrote: > On Sun, 16 Nov 2008 16:05:15 -0500 > > Adam Jimerson <[EMAIL PROTECTED]> wrote: > > I'm trying to make a CGI script to upload files remotely onto my > > server, to get around my uni blocking everything but port 80, but I > > have ran into a prob

Re: Problem with uploader

2008-11-18 Thread Adam Jimerson
On Sunday 16 November 2008 9:10:19 pm you wrote: > > You'll want to look in the error log to see what is there. > > Sean All the Apache error logs says is "print () on closed Filehandle OUTFILE at /srv/www/cgi-bin/upload line 46", but I do have the filehandle open in the script. -- "We must pl

Re: Problem with uploader

2008-11-18 Thread Sean Davis
On Sun, Nov 16, 2008 at 4:05 PM, Adam Jimerson <[EMAIL PROTECTED]> wrote: > I'm trying to make a CGI script to upload files remotely onto my server, to > get around my uni blocking everything but port 80, but I have ran into a > problem with it. I followed the documentation on CPAN for uploading