Re: cgi-bin will not execute perl program [SOLVED]

2007-06-21 Thread Mike Williams
On 6/20/07, whitsey <[EMAIL PROTECTED]> wrote: > On 6/14/07, Mumia W. <[EMAIL PROTECTED]> wrote: > Did some tinkering, commented out that option and Add-Handler which I > also thought was required and my cgi code still worked. > > #Options ExecCGI > #AddHandler cgi-script .cgi > > Then I found t

Re: cgi-bin will not execute perl program

2007-06-21 Thread whitsey
On Jun 15, 6:20 am, [EMAIL PROTECTED] (Mike Williams) wrote: > On 6/14/07, Mumia W. <[EMAIL PROTECTED]> wrote: > > > > > > > On 06/14/2007 02:24 AM, whitsey wrote: > > > Mumia W. wrote: > > >> On 06/12/2007 09:38 PM, whitsey wrote: > > >>> > > >>> AllowOverride None > > >>> Options None >

Re: cgi-bin will not execute perl program

2007-06-14 Thread Mike Williams
On 6/14/07, Mumia W. <[EMAIL PROTECTED]> wrote: On 06/14/2007 02:24 AM, whitsey wrote: > Mumia W. wrote: >> On 06/12/2007 09:38 PM, whitsey wrote: >>> >>> AllowOverride None >>> Options None >> >> You need "Options ExecCGI" or (more probably) "Options +ExecCGI" > > The Apache/Tomcat docu

Re: cgi-bin will not execute perl program

2007-06-14 Thread Mumia W.
On 06/14/2007 02:24 AM, whitsey wrote: Mumia W. wrote: On 06/12/2007 09:38 PM, whitsey wrote: [...] AllowOverride None Options None You need "Options ExecCGI" or (more probably) "Options +ExecCGI" The Apache/Tomcat documentation states that the "ScriptAlias" directive automatically

Re: cgi-bin will not execute perl program

2007-06-14 Thread whitsey
Mumia W. wrote: > On 06/12/2007 09:38 PM, whitsey wrote: > > [...] > > > > AllowOverride None > > Options None > > > You need "Options ExecCGI" or (more probably) "Options +ExecCGI" The Apache/Tomcat documentation states that the "ScriptAlias" directive automatically assigns the alias as

Re: cgi-bin will not execute perl program

2007-06-13 Thread Mumia W.
On 06/12/2007 09:38 PM, whitsey wrote: [...] AllowOverride None Options None You need "Options ExecCGI" or (more probably) "Options +ExecCGI" -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

cgi-bin will not execute perl program

2007-06-13 Thread whitsey
I am trying to execute the printenv perl script in the cgi-bin directory and it is printing the code instead of executing the script. Normally this is prety basic stuff setting this up however I just can't get it to work. I have gone through the Apache documentation and performed everything to th