Re: [cgiapp] Problems with uploads

2010-06-25 Thread Nicholas Bamber
Hi Nicholas / A lot of my troubles seem to have come from following the HTML, XHTML, / / and CSS Bible by Steven Shafer which recomends a form like this: / / / / form action=formhandler.cgi method=post enctype=form/multipart // // input type=file id=file size=10/ .. // / / I was slightly

Re: [cgiapp] Problems with uploads

2010-06-25 Thread Ron Savage
Hi Nicholas On Fri, 2010-06-25 at 11:07 +0100, Nicholas Bamber wrote: JS code will often require the id, so you should always include it. I thought this pretty much sums it up. http://www.velocityreviews.com/forums/showpost.php?p=699631postcount=2 So I only include when I have CSS or js

[cgiapp] Problems with uploads

2010-06-24 Thread Nicholas Bamber
I have just had a terrible time getting file uploads to work with CGI::Application. I ended up working with a hacked version of CGI.pm that was writing statements to a local file. I have had to temporarily abandon test-driven development in favour of just get the damn thing working - sort of -

Re: [cgiapp] Problems with uploads

2010-06-24 Thread Ron Savage
Hi Nicholas On Thu, 2010-06-24 at 18:12 +0100, Nicholas Bamber wrote: I have just had a terrible time getting file uploads to work with CGI::Application. I ended up working with a hacked version of CGI.pm that was writing statements to a local file. I have had to temporarily abandon