How can I continuously inform the user of progress from a Perl CGI script?

前端 未结 6 710
一整个雨季
一整个雨季 2021-01-13 12:04

I have this Perl script sitting in the cgi-bin folder of my Apache server:

#!/usr/bin/perl 
use strict;
use warnings;

$| = 1;

print \"Content-type: text/ht         


        
6条回答
  •  梦毁少年i
    2021-01-13 12:17

    It worked for me by disabling the Deflate module for that particular virtual host.

    SetEnv no-gzip 1
    

    I guess you could achieve the same result using a .htaccess file too.

提交回复
热议问题