> -----Original Message-----
> From: Gerd Kortemeyer [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, January 09, 2001 6:43 PM
> To: [EMAIL PROTECTED]
> Cc: [EMAIL PROTECTED]
> Subject: Re: How do you run libapreq-0.31/eg/perl/file_upload.pl
> 

> 
> might help the browser to figure out that the first page is 
> over. Also, if
> nothing helps, send an explicit no-cache in the header:
> 
>     $r->content_type('text/html');
>     $r->header_out('Cache-control','no-cache');
>     $r->header_out('Pragma','no-cache');
>     $r->send_http_header;

all of that can be accomplished with 
  $r->no_cache(1);
  $r->send_http_header('text/html');

--Geoff

> 
> - Gerd.
> 

Reply via email to