Re: Text Returned from Get method

2001-08-20 Thread darren chamberlain

winnecon <[EMAIL PROTECTED]> said something to this effect on 08/17/2001:
> Mod_PERL pulls up the first page of my cgi, but every time I try to 
> navigate around using form action buttons (get method) it pulls up 
> the original perl code for the cgi in the browser, as if ExecCGI was 
> not turned on, but it is!
> 
> I have configured httpd.conf for Mod_PERL, as follows:
>   Alias /cgi-bin /Library/WebServer/cgi-bin
>  PerlModule Apache::Registry
>
 
>  SetHandler perl-script
>  PerlHandler Apache::Registry
>  Options ExecCGI
>  Allow from all
>  PerlSendHeader On
>
  

> If anyone else has had this problem or could suggest a solution (or 
> additional documentation) I appreciate it.

Try that.

(darren)

-- 
You can never entirely stop being what you once were. That's why it's
important to be the right person today, and not put it off till tomorrow.
-- Larry Wall



Text Returned from Get method

2001-08-17 Thread winnecon


-- 
Mod_PERL pulls up the first page of my cgi, but every time I try to 
navigate around using form action buttons (get method) it pulls up 
the original perl code for the cgi in the browser, as if ExecCGI was 
not turned on, but it is!

I have configured httpd.conf for Mod_PERL, as follows:
  Alias /cgi-bin /Library/WebServer/cgi-bin
 PerlModule Apache::Registry
   
 SetHandler perl-script
 PerlHandler Apache::Registry
 Options ExecCGI
 Allow from all
 PerlSendHeader On
   

If anyone else has had this problem or could suggest a solution (or 
additional documentation) I appreciate it.

Brett