I've installed Apache and I can run static pages however CGI refuses to run. Here's what I know:
When I try to get a script to run, instead of executing, it just see the text of the script so:
#!/bin/sh
echo Content-type: text/html
ls -la
gets printed instead of giving me an actually directory listing. I'm fairly sure my cgi directory alias is ok too.
When I do an HTTPD -l I can see that I dont have mod_cgi installed. After some grumbling about how moronic it is that the vanilla install doesn't include CGI, I reconfigure and reinstall the whole thing.
I still dont have mod_cgi installed and I still can execute.
Soooo, my question is, why isn't the CGI module installing? I'm stuck. I don't see any errors and the documentation at Apache.Org is so bad that it reaffirms my belief that Satan is alive and well and writing docs for Open Source projects.
Any help would be appreciated.
When I try to get a script to run, instead of executing, it just see the text of the script so:
#!/bin/sh
echo Content-type: text/html
ls -la
gets printed instead of giving me an actually directory listing. I'm fairly sure my cgi directory alias is ok too.
When I do an HTTPD -l I can see that I dont have mod_cgi installed. After some grumbling about how moronic it is that the vanilla install doesn't include CGI, I reconfigure and reinstall the whole thing.
I still dont have mod_cgi installed and I still can execute.
Soooo, my question is, why isn't the CGI module installing? I'm stuck. I don't see any errors and the documentation at Apache.Org is so bad that it reaffirms my belief that Satan is alive and well and writing docs for Open Source projects.
Any help would be appreciated.