There are a couple parts and i dont know what you changed but..
You need this along with all the other LoadModules:
LoadModule cgi_module libexec/httpd/mod_cgi.so
And this with all the other AddModules:
AddModule mod_cgi.c
You need this about halfway down the page:
ScriptAlias /cgi-bin/ "/Library/WebServer/CGI-Executables/"
#
# "/Library/WebServer/CGI-Executables" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "/Library/WebServer/CGI-Executables">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
And you might want to have this near the bottom:
AddHandler cgi-script .cgi
There are some other random stuff about cgi in there but i dont think you changed that. If you have any other questions or want me to email you my httpd.conf then email me at
boardkev@aol.com. I hope this is what you want.