On Thu, Aug 04, 2005 at 11:31:23PM +0200, Ami Emanuel Bizamcher wrote:
> On 8/4/05, Ami Emanuel Bizamcher <[EMAIL PROTECTED]> wrote:
> > i have tryed what you said but i get nothing...
> > i just waits for the loop to finish then sends the data.
> > 
> > i also checked the output directly
> > echo "GET /cgi-bin/somefile.pl" | nc 127.0.0.1 80
> > 
> > but no output came out
> > 
> > (also plz direct me to the supplied documentation)
[snip]
> > On 8/4/05, Henning Brauer <[EMAIL PROTECTED]> wrote:
> > > * Ami Emanuel Bizamcher <[EMAIL PROTECTED]> [2005-08-04 17:58]:
> > > > how i can use non-prased headers in apache ?!?
> > >
> > > maybe by reading the supplied documentation...
> > >
> > > > i have mod_perl installed!
> > > > im using CGI written in perl.
> > >
> > > <Directory /somewhere>
> > >   <Files something.pl>
> > >     SetHandler  perl-script
> > >     PerlHandler Apache::Registry
> > >     PerlSendHeader Off
> > >     Options +ExecCGI
> > >   </Files>
> > > </Directory>
> > >
[snip]
> Anyone on this list can help ?!?

Hm... sounds like stdout is buffered, so turn it off:
$| = 1;

Regards,
Simon

Reply via email to