Apache Config for CGI with REBOL Part 2
[1/1] from: gjones05::mail::orion::org at: 27-Feb-2001 11:54
Oohhh. I just reread my own reply and realized I made a mistake. Sorry.
Example for step 4 for httpd.conf currently reads:
example:
<Directory "/path/to/website/cgi-bin">
AllowOverride None
Options ExecCGI
Order allow,deny
Allow from all
</Directory>
It **should** read:
example:
<Directory "/home/Apache/cgi-bin">
AllowOverride None
Options ExecCGI
Order allow,deny
Allow from all
</Directory>
In other words, it should be the same path as was used in step 3.
Sorry!
--Scott Jones