in reply to Re: Re: Trouble with browser file upload for large files
in thread Trouble with browser file upload for large files

try adding a newline:
print ".\n";

cLive ;-)

--
seek(JOB,$$LA,0);

Replies are listed 'Best First'.
Re: Re: Re: Re: Trouble with browser file upload for large files
by Baz (Friar) on May 29, 2002 at 07:38 UTC
    Unfortunately that didn’t work either...

      Aside from turning output buffering off, you'll need to do a print $cgi->header(); and print the <html> and <body> tags before you start printing your dots - when I last did this I used hashes (#) because they're a bit easier to see!

Re: Trouble with browser file upload for large files
by Baz (Friar) on May 29, 2002 at 17:20 UTC
    Even though I've turned off output buffering the browser isn't displaying the next page until the complete upload is complete....my code is as follows
    print $query->header(-Refresh=>'5;URL=http://baz.perlmonk.org/main.cgi +'); print $query->start_html("Submission Added");
    would the refresh be switching the buffering back on?