Chuck Carson wrote:

>  
> I have the following config:
>  
> apache 1.3.22 with perl 1.26 built statically
>  
> I want to use perl to dynamically generate html pages, so I have .pl
> files under DOCUMENT_ROOT.
>  
> I have this config:
> 
> Alias /perl /usr/local/apache/cgi-bin
> <Directory /usr/local/apache/cgi-bin >
>         SetHandler perl-script
>         PerlHandler Apache::Registry
>         Options +ExecCGI
> </Directory>
> <Files *.pl>
>         SetHandler perl-script
>         PerlHandler Apache::Registry
>         Options ExecCGI
> </Files>
>  
> Whenever I try and get a perl script from a web browser, it pops up a
> dialog asking to save the damn file. I have tried Netscape 4.79 on NT
> and Unix as well as IE 5.5. I have configured a server in this manner
> probably 100 times, I cannot find what I a missing this particuliar
> time.
>  
>  
> Anyone have any ideas?

let the guide be with you:
http://perl.apache.org/guide/config.html#My_Script_Works_under_mod_cgi_b

PerlSendHeader On
is missing if you use CORE::print() to send headers

_____________________________________________________________________
Stas Bekman             JAm_pH      --   Just Another mod_perl Hacker
http://stason.org/      mod_perl Guide   http://perl.apache.org/guide
mailto:[EMAIL PROTECTED]  http://ticketmaster.com http://apacheweek.com
http://singlesheaven.com http://perl.apache.org http://perlmonth.com/

Reply via email to